diff --git a/Design Notes.rtf b/Design Notes.rtf new file mode 100644 index 0000000..52bb92f --- /dev/null +++ b/Design Notes.rtf @@ -0,0 +1,193 @@ +{\rtf1\ansi\ansicpg1252\cocoartf1348\cocoasubrtf170 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;\f1\fnil\fcharset0 Monaco;} +{\colortbl;\red255\green255\blue255;} +\margl1440\margr1440\vieww14980\viewh16700\viewkind0 +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural + +\f0\fs24 \cf0 Design Notes & Status\ +\ +2016-04-29\ +\ +The log/2 bug was nastier than thought. It had to do with using different forms of the file name when loading modules, so the log module wasn\'92t noted. Working OK now.\ +\ +Diagnostic tool \'97 make direct calls to the various dynamic predicates, such as mod_import and the like. These revealed that the higher level modules weren\'92t seeing the log module after it had been read once.\ +\ +2016-04-27\ +\ +Working with current sources. Here\'92s the development cycle. Run it, if it fails, fix it. So I imagine we\'92ll keep running into various problems, and each one will make the tool better. Here\'92s the ones I encountered with these tests.\ +\ +It was failing to handle :- use_module(project(X)) statements. I added a poor fix, which was in process to recognize those statements and do nothing. A better fix is to figure out the path to X and \'91xinput\'92 that file so it can be included in the cross reference.\ +\ +It was getting read errors, that were due to an operator, <->, not being understood. The fix was to put a catch around the \'91read\'92 in the xinput loop and log the errors and display them at the top of the cross reference. These could be made easier to understand.\ +\ +I random check of the results. Lots of undefined and unused. Looked at semantics atomize which was said to be unused. Checked and it was used, but in a maplist so it was two arguments shy. Added the code to \'91uses\'92 predicate that looks at such things, and added the extra arguments, so now it\'92s happy with atomize.\ +\ +There are lots more. The more the reasons are understood and dealt with, the smarter the xref will become.\ +\ +Check the change log to see the ones made in this round. The main predicates that do the work are \'91process\'92, taking the first pass, and \'91uses\'92 which is looking at the individual goals and recording what needs to be recorded.\ +\ +Starting at the top of the warnings, the discontiguous warning for logicTranslator/processNode is there because it is discontiguous. Probably an error in the code.\ +\ +2016-04-27\ +\ +Improved formatting, fixed a number of disconnects, especially with dynamic predicates.\ +\ +Added a file relation report as well, which files load which other files. It\'92s complex for this run!\ +\ +Check it out, see if the report seems right or wrong.\ +\ +2016-04-26\ +\ +It now runs, whether or not correctly to be determined, on large numbers of Solstice files. It can be started with a single file, and then it automatically tracks all the use_module and include directives to take into account everyone.\ +\ +See dw_main.pro to see how it was started.\ +\ +See xrf_SessionManager.txt to see a large amount of output. It has the complete cross reference, and then the cones down from everything that is an orphan at the top, and the cones up from all the dynamic predicates. Plus tons of warnings, not sure if they\'92re right or not.\ +\ +Because it is tracking the file structure, it would be nice to add a report on which files call which as well, and maybe I\'92ll add that tomorrow.\ +\ +NOTE: the reports are all generated in xrfSicstusMain.pro. The data are all facts created by xrfSicstus. The written reports are really just a guide to how to use the underlying data. That data could be used by a graphical front end, or some kind of query interface to see just segments of the data.\ +\ +The reports could be simplified by eliminating all the reporting on builtin predicates. It could be an option. Might not want to know all the calls to nl.\ +\ +2016-04-25\ +\ +The cross reference is now running under SICStus, with knowledge of SICStus modules and dynamic predicates.\ +\ +The system will be set up to produce three kinds of reports. Also, the raw data needed for the reports can be accessed directly for different purposes.\ +\ +The current examples/tests have been done with the Amzi! Duck World tutorial, modified to run on SICStus. (SICStus does not use ISO standard module declarations.) The Duck World tutorial is a very simple interactive fiction game, where the dynamic predicate loc/2 is key, as it\'92s constantly updated to record the current state of the game. It has three modules, user, rules, and data.\ +\ + +\b Cross Reference +\b0 \ +\ +An alphabetical listing of all predicates with the direct sub-goals and callers listed. Note that asserts/retracts are handled a bit different, and show up as, for example: assert-data:loc/2.\ +\ +Here\'92s an entry for a predicate in the game:\ +\ +\pard\pardeftab720 + +\f1\fs22 \cf0 rules:connect/2\ + subgoals:\ + data:nextto/2\ + called from: \ + rules:goto/1\ + rules:look_connect/1\ +\ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural + +\f0\fs24 \cf0 Note that dynamic predicates have a third category cross reference, where they\'92re modified by asserts or retracts. Here\'92s the entry for the dynamic loc/2 predicate:\ +\ +\pard\pardeftab720 + +\f1\fs22 \cf0 data:loc/2 dynamic\ + modified in:\ + rules:move/2\ + no subgoals\ + called from: \ + rules:chase/1\ + rules:done/0\ + rules:ducks/0\ + rules:fox/0\ + rules:goto/1\ + rules:look/0\ + rules:look_have/1\ + rules:look_here/1\ + rules:take/1 +\f0\fs24 \ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural +\cf0 \ + +\b Top Down Cone +\b0 \ +\ +Predicates that aren\'92t called by any others are consider the tops of cones of influence. They will be analyzed with a tree structure that shows all the sub-goals and sub-goals lower. Here\'92s part of the main/0 cone looking down. Notice that the move/2 predicate lists the assert/retract subgoals for loc/2.\ +\ +\pard\pardeftab720 + +\f1\fs22 \cf0 user:main/0 uses:\ +. user:go/0\ +. . builtin: \\= /2\ +. . rules:demons/0\ +. . . rules:ducks/0\ +. . . . data:loc/2\ +. . . . rules:move/2\ +. . . . . assert-data:loc/2\ +. . . . . retract-data:loc/2\ +. . . . builtin:nl/0\ +. . . . builtin:write/1\ +. . . rules:fox/0\ +. . . . data:loc/2\ +. . . . builtin:nl/0\ +. . . . builtin:write/1\ +. . rules:do/1\ +. . . rules:chase/1\ +. . . . data:loc/2\ +. . . . rules:move/2\ +. . . . . assert-data:loc/2\ +. . . . . retract-data:loc/2\ +. . . . builtin:nl/0\ +. . . . builtin:write/1\ +. . . rules:goto/1\ +. . . . rules:connect/2 +\f0\fs24 \ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural +\cf0 \ +\ + +\b Dynamic Predicates, Bottom Up +\b0 \ +\ +Dynamic predicates have places where they\'92re modified, and places where they\'92re used. These reports trace both of those cones up. Here\'92s part of the report for loc/2 in the data module. Note from above, that move/2 is where the asserts/retracts are for loc/2.\ +\ +\pard\pardeftab720 + +\f1\fs22 \cf0 data:loc/2 modified in:\ +. rules:move/2\ +. . rules:chase/1\ +. . . rules:do/1\ +. . . . user:go/0\ +. . . . . user:go/0 ***** looping *****\ +. . . . . user:main/0\ +. . rules:ducks/0\ +. . . rules:demons/0\ +. . . . user:go/0\ +. . . . . user:go/0 ***** looping *****\ +. . . . . user:main/0\ +\ +\pard\pardeftab720 + +\f0\fs24 \cf0 \ +\pard\pardeftab720 + +\f1\fs22 \cf0 data:loc/2 used by:\ +. rules:chase/1\ +. . rules:do/1\ +. . . user:go/0\ +. . . . user:go/0 ***** looping *****\ +. . . . user:main/0\ +. rules:done/0\ +. . user:go/0\ +. . . user:go/0 ***** looping *****\ +. . . user:main/0\ +. rules:ducks/0\ +. . rules:demons/0\ +. . . user:go/0\ +. . . . user:go/0 ***** looping *****\ +. . . . user:main/0\ +. rules:fox/0\ +. . rules:demons/0\ +. . . user:go/0\ +. . . . user:go/0 ***** looping *****\ +. . . . user:main/0\ +\ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\pardirnatural + +\f0\b\fs24 \cf0 More Work\ + +\b0 \ +From here it needs to be tested with PhaseChange modules.\ +\ +Support for maplist and others needs to be added so those meta-predicates can be tracked by their content.\ +} \ No newline at end of file diff --git a/axrf_main.pro b/axrf_main.pro deleted file mode 100644 index 907709f..0000000 --- a/axrf_main.pro +++ /dev/null @@ -1,18 +0,0 @@ -% axrf_main.pro - -/* main :- - command_line(ARGS), - get_files(ARGS, FILES), - axrf:xref(FILES, 'xref.txt'). */ - -get_files([], []). -get_files([ARG|ARGS], [FILE|FILES]) :- - atom_codes(FILE, ARG), - get_files(ARGS, FILES). - -main :- - axrf:xref(['dw_main.pro', 'dw_rules.pro', 'dw_data.pro']). -% axrf:xref(['dw_main.pro', 'dw_rules.pro', 'dw_data.pro'], 'output.txt'). - -main :- - nl, write('nope'), nl. \ No newline at end of file diff --git a/dw_data.pro b/dw_data.pro index 8d7cc9d..bcd0748 100755 --- a/dw_data.pro +++ b/dw_data.pro @@ -4,8 +4,8 @@ % asserted/retracted from the other modules, so it is % declared as dynamic. -:- module(data). -:- export([nextto/2, loc/2]). +:- module(data, + [nextto/2, loc/2]). :- dynamic(loc/2). nextto(pen, yard). @@ -15,4 +15,3 @@ loc(egg,pen). loc(ducks,pen). loc(you,house). -:- end_module(data). diff --git a/dw_main.pro b/dw_main.pro index b48d687..9e68488 100755 --- a/dw_main.pro +++ b/dw_main.pro @@ -32,16 +32,16 @@ % code in the 'user' module to refer, without module % qualification, to the predicates exported from 'rules'. -:- import(rules). +:- use_module('dw_rules.pro'). % The code in this file is in module 'user'. Because that % is the default module, it does not need to be specified. % The following predicates are all in 'user'. -dw_main :- - write(` Welcome to Duck World `),nl, +main :- + write(' Welcome to Duck World '),nl, instructions, - write(` Go get an egg `),nl, + write(' Go get an egg '),nl, go. % Because 'rules' are imported by 'user', this @@ -50,26 +50,26 @@ dw_main :- go :- done. go :- - write($>> $), + write('>> '), read(X), X \= quit, do(X), demons, !, go. -go :- write($ Quitter $), nl. +go :- write(' Quitter '), nl. instructions :- nl, - write($You start in the house, the ducks and an egg$), nl, - write($are in the pen. You have to get the egg$), nl, - write($without losing any ducks.$), nl, + write('You start in the house, the ducks and an egg'), nl, + write('are in the pen. You have to get the egg'), nl, + write('without losing any ducks.'), nl, nl, - write($Enter commands at the prompt as Prolog terms$), nl, - write($ending in period:$), nl, - write($ goto(X). - where X is a place to go to.$), nl, - write($ take(X). - where X is a thing to take.$), nl, - write($ chase(X). - chasing ducks sends them to the pen.$), nl, - write($ look. - the state of the game.$), nl, - write($ help. - this information.$), nl, - write($ quit. - exit the game.$), nl, + write('Enter commands at the prompt as Prolog terms'), nl, + write('ending in period:'), nl, + write(' goto(X). - where X is a place to go to.'), nl, + write(' take(X). - where X is a thing to take.'), nl, + write(' chase(X). - chasing ducks sends them to the pen.'), nl, + write(' look. - the state of the game.'), nl, + write(' help. - this information.'), nl, + write(' quit. - exit the game.'), nl, nl. diff --git a/dw_rules.pro b/dw_rules.pro index c6011eb..2677dbf 100755 --- a/dw_rules.pro +++ b/dw_rules.pro @@ -4,9 +4,11 @@ % 'user' module. The 'data' module is imported, so it's % predicates can be referred to from this module. -:- module(rules). -:- export([done/0, do/1, demons/0]). -:- import(data). +:- module(rules, + [done/0, do/1, demons/0]). + +:- use_module('dw_data.pro'). + connect(X,Y) :- nextto(X,Y). @@ -18,7 +20,7 @@ connect(X,Y) :- done :- loc(you, house), loc(egg, you), - write($ Thanks for getting the egg. $), nl. + write(' Thanks for getting the egg. '), nl. % The demon predicates, waiting for certain situations to occur. @@ -30,13 +32,13 @@ ducks :- loc(ducks, pen), loc(you, pen), move(ducks, yard), - write($ The ducks have run into the yard. $), nl. + write(' The ducks have run into the yard. '), nl. ducks. fox :- loc(ducks, yard), loc(you, house), - write($ The fox has taken a duck. $), nl. + write(' The fox has taken a duck. '), nl. fox. % Even though 'data' is imported, the asserts and retracts @@ -59,58 +61,58 @@ do(help) :- !, instructions. do(quit) :- !. do(listing) :- !, listing. do(report) :- !, report. -do(X) :- write($unknown command$:X), nl, instructions. +do(X) :- write('unknown command':X), nl, instructions. goto(X) :- loc(you, L), connect(L, X), move(you, X), - write($ You are in the $), write(X), nl. + write(' You are in the '), write(X), nl. goto(X) :- - write($ You can't get there from here. $), nl. + write(' You cannot get there from here. '), nl. chase(ducks) :- loc(ducks, L), loc(you, L), move(ducks, pen), - write($ The ducks are back in their pen. $), nl. + write(' The ducks are back in their pen. '), nl. chase(ducks) :- - write($ No ducks here. $), nl. + write(' No ducks here. '), nl. take(X) :- loc(you, L), loc(X, L), move(X, you), - write($ You now have the $), write(X), nl. + write(' You now have the '), write(X), nl. take(X) :- - write($ There is no $), write(X), write($ here.$), nl. + write(' There is no '), write(X), write(' here.'), nl. look :- - write($You are in the $), + write('You are in the '), loc(you, L), write(L), nl, look_connect(L), look_here(L), look_have(you). look_connect(L) :- - write($You can go to: $), nl, + write('You can go to: '), nl, connect(L, CONNECT), - write($ $), write(CONNECT), nl, + write(' '), write(CONNECT), nl, fail. look_connect(_). look_have(X) :- - write($You have: $), nl, + write('You have: '), nl, loc(THING, X), - write($ $), write(THING), nl, + write(' '), write(THING), nl, fail. look_have(_). look_here(L) :- - write($You can see: $), nl, + write('You can see: '), nl, loc(THING, L), THING \= you, - write($ $), write(THING), nl, + write(' '), write(THING), nl, fail. look_here(_). @@ -118,4 +120,3 @@ report :- findall(X:Y, loc(X,Y), L), write(L), nl. -:- end_module(rules). diff --git a/output.txt b/output.txt index c6601a7..2f26ac4 100644 --- a/output.txt +++ b/output.txt @@ -1,171 +1,1558 @@ ----- Warnings ----- -Dynamic and static definitions for: data:loc/2 -Unused predicate: user:dw_main/0 +Undefined: xread/1 in module xrf called from process/4 +Unused predicate: user:main/0 +Unused predicate: xrf:(?)/1 +Unused predicate: xrf:get_xlists/2 +Unused predicate: xrf:used_by2/2 +Unused predicate: xrf:uses2/2 +Unused predicate: xrf:warning/2 ----- Predicate Use ----- -data:loc/2 - no subgoals - called from: - rules:look_here/1 - rules:look_have/1 - rules:look/0 - rules:take/1 - rules:chase/1 - rules:goto/1 - rules:move/2 - rules:fox/0 - rules:ducks/0 - rules:done/0 -data:nextto/2 - no subgoals - called from: - rules:connect/2 -rules:chase/1 - subgoals: - data:loc/2 - rules:move/2 - builtin:nl/0 - builtin:write/1 - called from: - rules:do/1 -rules:connect/2 - subgoals: - data:nextto/2 - called from: - rules:look_connect/1 - rules:goto/1 -rules:demons/0 - subgoals: - rules:ducks/0 - rules:fox/0 - called from: - user:go/0 -rules:do/1 - subgoals: - rules:chase/1 - rules:goto/1 - user:instructions/0 - builtin:listing/0 - rules:look/0 - builtin:nl/0 - rules:report/0 - rules:take/1 - builtin:write/1 - called from: - user:go/0 -rules:done/0 - subgoals: - data:loc/2 - builtin:nl/0 - builtin:write/1 - called from: - user:go/0 -rules:ducks/0 - subgoals: - data:loc/2 - rules:move/2 - builtin:nl/0 - builtin:write/1 - called from: - rules:demons/0 -rules:fox/0 - subgoals: - data:loc/2 - builtin:nl/0 - builtin:write/1 - called from: - rules:demons/0 -rules:goto/1 - subgoals: - rules:connect/2 - data:loc/2 - rules:move/2 - builtin:nl/0 - builtin:write/1 - called from: - rules:do/1 -rules:look/0 - subgoals: - data:loc/2 - rules:look_connect/1 - rules:look_have/1 - rules:look_here/1 - builtin:nl/0 - builtin:write/1 - called from: - rules:do/1 -rules:look_connect/1 - subgoals: - rules:connect/2 - builtin:nl/0 - builtin:write/1 - called from: - rules:look/0 -rules:look_have/1 - subgoals: - data:loc/2 - builtin:nl/0 - builtin:write/1 - called from: - rules:look/0 -rules:look_here/1 - subgoals: - builtin:\=/2 - data:loc/2 - builtin:nl/0 - builtin:write/1 - called from: - rules:look/0 -rules:move/2 - subgoals: - data:loc/2 - builtin:assert/1 - builtin:retract/1 - called from: - rules:take/1 - rules:chase/1 - rules:goto/1 - rules:ducks/0 -rules:report/0 - subgoals: - builtin:findall/3 - builtin:nl/0 - builtin:write/1 - called from: - rules:do/1 -rules:take/1 - subgoals: - data:loc/2 - rules:move/2 - builtin:nl/0 - builtin:write/1 - called from: - rules:do/1 -user:dw_main/0 - subgoals: - user:go/0 - user:instructions/0 - builtin:nl/0 - builtin:write/1 - no callers -user:go/0 - subgoals: - builtin:\=/2 - rules:demons/0 - rules:do/1 - rules:done/0 - user:go/0 - builtin:nl/0 - builtin:read/1 - builtin:write/1 - called from: - user:go/0 - user:dw_main/0 -user:instructions/0 - subgoals: - builtin:nl/0 - builtin:write/1 - called from: - rules:do/1 - user:dw_main/0 +user:bottoms/1 + subgoals: + builtin:findall/3 + called from: + user:main/0 +user:bottoms_up/1 + subgoals: + user:bottoms_up/1 + user:cone_above/1 + builtin:nl/0 + builtin:write/1 + called from: + user:bottoms_up/1 + user:main/0 +user:called_by_report/1 + subgoals: + builtin: \= /2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + user:write_list/2 + xrf:used_by/2 + called from: + user:uses_report/1 +user:cone_above/1 + subgoals: + user:cones_above/3 + builtin:nl/0 + builtin:write/1 + xrf:modified_in/2 + xrf:used_by/2 + called from: + user:bottoms_up/1 +user:cone_below/1 + subgoals: + user:cones_below/3 + builtin:nl/0 + builtin:write/1 + xrf:uses/2 + called from: + user:tops_down/1 +user:cones_above/3 + subgoals: + user:cones_above/3 + builtin:is/2 + builtin:memberchk/2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + xrf:used_by/2 + called from: + user:cone_above/1 + user:cones_above/3 +user:cones_below/3 + subgoals: + user:cones_below/3 + builtin:is/2 + builtin:memberchk/2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + xrf:uses/2 + called from: + user:cone_below/1 + user:cones_below/3 +user:here/1 + no subgoals + called from: + user:main/0 +user:main/0 + subgoals: + user:bottoms/1 + user:bottoms_up/1 + file_systems:current_directory/2 + user:here/1 + builtin:nl/0 + user:set_tab/1 + builtin:tell/1 + builtin:told/0 + user:tops/1 + user:tops_down/1 + builtin:write/1 + user:xreport/0 + xrf:xref/1 + no callers +user:modified_report/1 + subgoals: + builtin: \= /2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + user:write_list/2 + xrf:dynamic_pred/1 + xrf:modified_in/2 + called from: + user:uses_report/1 +user:set_tab/1 + subgoals: + builtin:retractall/1 + assert-user:tab_text/1 + called from: + user:main/0 +user:subgoal_report/1 + subgoals: + builtin: \= /2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + user:write_list/2 + xrf:uses/2 + called from: + user:uses_report/1 +user:tab/1 + subgoals: + builtin:is/2 + user:tab/1 + user:tab_text/1 + builtin:write/1 + called from: + user:called_by_report/1 + user:cones_above/3 + user:cones_below/3 + user:modified_report/1 + user:subgoal_report/1 + user:tab/1 +user:tab_text/1 dynamic + modified in: + user:set_tab/1 + no subgoals + called from: + user:tab/1 +user:tops/1 + subgoals: + builtin:findall/3 + called from: + user:main/0 +user:tops_down/1 + subgoals: + user:cone_below/1 + builtin:nl/0 + user:tops_down/1 + builtin:write/1 + called from: + user:main/0 + user:tops_down/1 +user:uses_report/0 + subgoals: + builtin:findall/3 + builtin:nl/0 + builtin:sort/2 + user:uses_report/1 + builtin:write/1 + called from: + user:xreport/0 +user:uses_report/1 + subgoals: + user:called_by_report/1 + user:modified_report/1 + builtin:nl/0 + user:subgoal_report/1 + user:uses_report/1 + builtin:write/1 + xrf:dynamic_pred/1 + called from: + user:uses_report/0 + user:uses_report/1 +user:warning_report/0 + subgoals: + builtin:findall/3 + builtin:nl/0 + builtin:sort/2 + builtin:write/1 + user:write_warnings/1 + called from: + user:xreport/0 +user:write_list/2 + subgoals: + builtin:write/1 + user:write_list/2 + called from: + user:called_by_report/1 + user:modified_report/1 + user:subgoal_report/1 + user:write_list/2 + user:write_warnings/1 +user:write_warnings/1 + subgoals: + builtin:nl/0 + user:write_list/2 + user:write_warnings/1 + called from: + user:warning_report/0 + user:write_warnings/1 +user:xreport/0 + subgoals: + user:uses_report/0 + user:warning_report/0 + called from: + user:main/0 +xrf:(?)/1 + subgoals: + builtin:nl/0 + builtin:writeq/1 + no callers +xrf:add_discontiguous/2 + subgoals: + xrf:add_discontiguous/2 + assert-xrf:discontig_pred/1 + called from: + xrf:add_discontiguous/2 + xrf:process/4 +xrf:add_dynamic/2 + subgoals: + builtin: = /2 + builtin: == /2 + xrf:add_dynamic/2 + xrf:assert_dynamic/1 + xrf:mod_functor/4 + called from: + xrf:add_dynamic/2 + xrf:add_use/3 + xrf:process/4 +xrf:add_export/2 + subgoals: + xrf:add_export/2 + assert-xrf:export_pred/2 + called from: + xrf:add_export/2 + xrf:process/4 +xrf:add_import/2 + subgoals: + xrf:add_import/2 + assert-xrf:import_mod/2 + assert-xrf:import_pred/2 + called from: + xrf:add_import/2 + xrf:process/4 +xrf:add_use/3 + subgoals: + builtin: = /2 + builtin: == /2 + xrf:add_dynamic/2 + xrf:add_use/3 + xrf:insert/3 + xrf:is_assert/2 + builtin:memberchk/2 + xrf:mod_functor/4 + builtin:nonvar/1 + xrf:open_module/1 + builtin:var/1 + called from: + xrf:add_use/3 + xrf:get_uses/2 +xrf:assert_dynamic/1 + subgoals: + xrf:dynamic_pred/1 + assert-xrf:dynamic_pred/1 + called from: + xrf:add_dynamic/2 +xrf:bad_body/2 + subgoals: + xrf:bad_body/2 + called from: + xrf:bad_body/2 + xrf:bad_term/2 +xrf:bad_term/2 + subgoals: + xrf:bad_body/2 + builtin:line_count/2 + builtin:stream_property/2 + assert-xrf:warning/2 + called from: + xrf:xinput/1 +xrf:convert_mfa_list/2 + subgoals: + xrf:convert_mfa_list/2 + xrf:get_pred_loc/4 + called from: + xrf:convert_mfa_list/2 + xrf:convert_used_by/0 + xrf:convert_uses/0 +xrf:convert_used_by/0 + subgoals: + xrf:convert_mfa_list/2 + assert-xrf:used_by2/2 + retract-de_fault:used_by/2 + called from: + xrf:get_xlists/2 +xrf:convert_uses/0 + subgoals: + xrf:convert_mfa_list/2 + assert-xrf:uses2/2 + retract-de_fault:uses/2 + called from: + xrf:get_xlists/2 +xrf:discontig_check/1 + subgoals: + xrf:discontig_pred/1 + xrf:last_clause/1 + xrf:uses_temp/2 + assert-xrf:warning/2 + called from: + xrf:get_uses/1 + xrf:get_uses/2 +xrf:discontig_pred/1 dynamic + modified in: + xrf:add_discontiguous/2 + no subgoals + called from: + xrf:discontig_check/1 +xrf:dynamic_pred/1 dynamic + modified in: + xrf:assert_dynamic/1 + no subgoals + called from: + user:modified_report/1 + user:uses_report/1 + xrf:assert_dynamic/1 + xrf:resolve_dynamics/0 +xrf:export_pred/2 dynamic + modified in: + xrf:add_export/2 + no subgoals + called from: + xrf:visible/1 +xrf:file/2 dynamic + modified in: + xrf:xinput/1 + no subgoals + called from: + xrf:process/4 + xrf:xinput/1 +xrf:find_mod/3 + subgoals: + builtin:current_predicate/1 + builtin:functor/3 + xrf:import_mod/2 + xrf:import_pred/2 + builtin:predicate_property/2 + xrf:uses_temp/2 + xrf:visible/1 + called from: + xrf:resolve_uses/3 +xrf:get_modified_in/0 + subgoals: + builtin:findall/3 + xrf:insert_list/3 + xrf:uses/2 + assert-xrf:modified_in/2 + called from: + xrf:xref/1 +xrf:get_pred_loc/4 + subgoals: + xrf:pred_loc/4 + called from: + xrf:convert_mfa_list/2 +xrf:get_used_by/0 + subgoals: + builtin:findall/3 + xrf:insert_list/3 + xrf:uses/2 + assert-xrf:used_by/2 + called from: + xrf:get_xlists/2 + xrf:xref/1 +xrf:get_uses/1 + subgoals: + xrf:discontig_check/1 + xrf:uses_temp/2 + assert-xrf:uses_temp/2 + called from: + xrf:process/4 +xrf:get_uses/2 + subgoals: + builtin: = /2 + xrf:add_use/3 + xrf:discontig_check/1 + assert-xrf:uses_temp/2 + retract-de_fault:uses_temp/2 + called from: + xrf:process/4 +xrf:get_xlists/2 + subgoals: + xrf:convert_used_by/0 + xrf:convert_uses/0 + builtin:findall/3 + xrf:get_used_by/0 + xrf:resolve_uses/0 + builtin:sort/2 + xrf:warn_undefined/0 + xrf:warn_unused/0 + no callers +xrf:import_mod/2 dynamic + modified in: + xrf:add_import/2 + no subgoals + called from: + xrf:find_mod/3 +xrf:import_pred/2 dynamic + modified in: + xrf:add_import/2 + no subgoals + called from: + xrf:find_mod/3 +xrf:insert/3 + subgoals: + builtin: @< /2 + xrf:insert/3 + called from: + xrf:add_use/3 + xrf:insert/3 + xrf:insert_list/3 +xrf:insert_list/3 + subgoals: + xrf:insert/3 + xrf:insert_list/3 + called from: + xrf:get_modified_in/0 + xrf:get_used_by/0 + xrf:insert_list/3 +xrf:is_assert/2 + no subgoals + called from: + xrf:add_use/3 +xrf:last_clause/1 dynamic + modified in: + xrf:set_last_clause/1 + no subgoals + called from: + xrf:discontig_check/1 +xrf:mod_functor/4 + subgoals: + builtin:functor/3 + called from: + xrf:add_dynamic/2 + xrf:add_use/3 +xrf:modified_in/2 dynamic + modified in: + xrf:get_modified_in/0 + no subgoals + called from: + user:cone_above/1 + user:modified_report/1 +xrf:module_file/2 dynamic + modified in: + xrf:process/4 + no subgoals + called from: + xrf:process/4 +xrf:open_module/1 dynamic + modified in: + xrf:set_open_module/1 + xrf:xinit/0 + no subgoals + called from: + xrf:add_use/3 + xrf:process/4 +xrf:pred_loc/4 dynamic + modified in: + xrf:process/4 + no subgoals + called from: + xrf:get_pred_loc/4 + xrf:process/4 +xrf:process/4 + subgoals: + xrf:add_discontiguous/2 + xrf:add_dynamic/2 + xrf:add_export/2 + xrf:add_import/2 + builtin:expand_term/2 + xrf:file/2 + builtin:functor/3 + xrf:get_uses/1 + xrf:get_uses/2 + xrf:module_file/2 + builtin:op/3 + xrf:open_module/1 + xrf:pred_loc/4 + xrf:process/4 + xrf:set_last_clause/1 + xrf:set_open_module/1 + xrf:xinput/1 + undefined:xread/1 + assert-xrf:module_file/2 + assert-xrf:pred_loc/4 + called from: + xrf:process/4 + xrf:xinput/1 +xrf:resolve_dynamics/0 + subgoals: + xrf:dynamic_pred/1 + xrf:uses_temp/2 + assert-xrf:uses_temp/2 + assert-xrf:warning/2 + called from: + xrf:resolve_uses/0 +xrf:resolve_uses/0 + subgoals: + xrf:resolve_dynamics/0 + xrf:resolve_uses/3 + xrf:uses_temp/2 + assert-xrf:uses/2 + called from: + xrf:get_xlists/2 + xrf:xref/1 +xrf:resolve_uses/3 + subgoals: + xrf:find_mod/3 + xrf:resolve_uses/3 + called from: + xrf:resolve_uses/0 + xrf:resolve_uses/3 +xrf:set_last_clause/1 + subgoals: + assert-xrf:last_clause/1 + retract-de_fault:last_clause/1 + called from: + xrf:process/4 +xrf:set_open_module/1 + subgoals: + assert-xrf:open_module/1 + retract-de_fault:open_module/1 + called from: + xrf:process/4 +xrf:used_by/2 dynamic + modified in: + xrf:get_used_by/0 + no subgoals + called from: + user:called_by_report/1 + user:cone_above/1 + user:cones_above/3 + xrf:warn_unused/0 +xrf:used_by2/2 dynamic + modified in: + xrf:convert_used_by/0 + no subgoals + no callers +xrf:uses/2 dynamic + modified in: + xrf:resolve_uses/0 + no subgoals + called from: + user:cone_below/1 + user:cones_below/3 + user:subgoal_report/1 + xrf:get_modified_in/0 + xrf:get_used_by/0 + xrf:warn_undefined/0 +xrf:uses2/2 dynamic + modified in: + xrf:convert_uses/0 + no subgoals + no callers +xrf:uses_temp/2 dynamic + modified in: + xrf:get_uses/1 + xrf:get_uses/2 + xrf:resolve_dynamics/0 + no subgoals + called from: + xrf:discontig_check/1 + xrf:find_mod/3 + xrf:get_uses/1 + xrf:resolve_dynamics/0 + xrf:resolve_uses/0 + xrf:visible/1 +xrf:visible/1 + subgoals: + builtin:current_predicate/1 + xrf:export_pred/2 + builtin:predicate_property/2 + xrf:uses_temp/2 + called from: + xrf:find_mod/3 +xrf:warn_undef/2 + subgoals: + xrf:warn_undef/2 + assert-xrf:warning/2 + called from: + xrf:warn_undef/2 + xrf:warn_undefined/0 +xrf:warn_undefined/0 + subgoals: + xrf:uses/2 + xrf:warn_undef/2 + called from: + xrf:get_xlists/2 + xrf:xref/1 +xrf:warn_unused/0 + subgoals: + xrf:used_by/2 + assert-xrf:warning/2 + called from: + xrf:get_xlists/2 + xrf:xref/1 +xrf:warning/2 dynamic + modified in: + xrf:bad_term/2 + xrf:discontig_check/1 + xrf:resolve_dynamics/0 + xrf:warn_undef/2 + xrf:warn_unused/0 + no subgoals + no callers +xrf:xinit/0 + subgoals: + builtin:retractall/1 + assert-xrf:open_module/1 + called from: + xrf:xref/1 +xrf:xinput/1 + subgoals: + builtin: == /2 + xrf:bad_term/2 + builtin:close/1 + xrf:file/2 + builtin:line_count/2 + builtin:open/3 + xrf:process/4 + builtin:read/2 + builtin:repeat/0 + xrf:xinput/1 + assert-xrf:file/2 + called from: + xrf:process/4 + xrf:xinput/1 + xrf:xref/1 +xrf:xref/1 + subgoals: + xrf:get_modified_in/0 + xrf:get_used_by/0 + xrf:resolve_uses/0 + xrf:warn_undefined/0 + xrf:warn_unused/0 + xrf:xinit/0 + xrf:xinput/1 + called from: + user:main/0 + +----- Going Down xrf:get_xlists/2 ---------- + +xrf:get_xlists/2 uses: +. xrf:convert_used_by/0 +. . xrf:convert_mfa_list/2 +. . . xrf:convert_mfa_list/2 ***** looping ***** +. . . xrf:get_pred_loc/4 +. . . . xrf:pred_loc/4 +. . assert-xrf:used_by2/2 +. . retract-de_fault:used_by/2 +. xrf:convert_uses/0 +. . xrf:convert_mfa_list/2 +. . . xrf:convert_mfa_list/2 ***** looping ***** +. . . xrf:get_pred_loc/4 +. . . . xrf:pred_loc/4 +. . assert-xrf:uses2/2 +. . retract-de_fault:uses/2 +. builtin:findall/3 +. xrf:get_used_by/0 +. . builtin:findall/3 +. . xrf:insert_list/3 +. . . xrf:insert/3 +. . . . builtin: @< /2 +. . . . xrf:insert/3 ***** looping ***** +. . . xrf:insert_list/3 ***** looping ***** +. . xrf:uses/2 +. . assert-xrf:used_by/2 +. xrf:resolve_uses/0 +. . xrf:resolve_dynamics/0 +. . . xrf:dynamic_pred/1 +. . . xrf:uses_temp/2 +. . . assert-xrf:uses_temp/2 +. . . assert-xrf:warning/2 +. . xrf:resolve_uses/3 +. . . xrf:find_mod/3 +. . . . builtin:current_predicate/1 +. . . . builtin:functor/3 +. . . . xrf:import_mod/2 +. . . . xrf:import_pred/2 +. . . . builtin:predicate_property/2 +. . . . xrf:uses_temp/2 +. . . . xrf:visible/1 +. . . . . builtin:current_predicate/1 +. . . . . xrf:export_pred/2 +. . . . . builtin:predicate_property/2 +. . . . . xrf:uses_temp/2 +. . . xrf:resolve_uses/3 ***** looping ***** +. . xrf:uses_temp/2 +. . assert-xrf:uses/2 +. builtin:sort/2 +. xrf:warn_undefined/0 +. . xrf:uses/2 +. . xrf:warn_undef/2 +. . . xrf:warn_undef/2 ***** looping ***** +. . . assert-xrf:warning/2 +. xrf:warn_unused/0 +. . xrf:used_by/2 +. . assert-xrf:warning/2 + +----- Going Down xrf:(?)/1 ---------- + +xrf:(?)/1 uses: +. builtin:nl/0 +. builtin:writeq/1 + +----- Going Down user:main/0 ---------- + +user:main/0 uses: +. user:bottoms/1 +. . builtin:findall/3 +. user:bottoms_up/1 +. . user:bottoms_up/1 ***** looping ***** +. . user:cone_above/1 +. . . user:cones_above/3 +. . . . user:cones_above/3 ***** looping ***** +. . . . builtin:is/2 +. . . . builtin:memberchk/2 +. . . . builtin:nl/0 +. . . . user:tab/1 +. . . . . builtin:is/2 +. . . . . user:tab/1 ***** looping ***** +. . . . . user:tab_text/1 +. . . . . builtin:write/1 +. . . . builtin:write/1 +. . . . xrf:used_by/2 +. . . builtin:nl/0 +. . . builtin:write/1 +. . . xrf:modified_in/2 +. . . xrf:used_by/2 +. . builtin:nl/0 +. . builtin:write/1 +. file_systems:current_directory/2 +. user:here/1 +. builtin:nl/0 +. user:set_tab/1 +. . builtin:retractall/1 +. . assert-user:tab_text/1 +. builtin:tell/1 +. builtin:told/0 +. user:tops/1 +. . builtin:findall/3 +. user:tops_down/1 +. . user:cone_below/1 +. . . user:cones_below/3 +. . . . user:cones_below/3 ***** looping ***** +. . . . builtin:is/2 +. . . . builtin:memberchk/2 +. . . . builtin:nl/0 +. . . . user:tab/1 +. . . . . builtin:is/2 +. . . . . user:tab/1 ***** looping ***** +. . . . . user:tab_text/1 +. . . . . builtin:write/1 +. . . . builtin:write/1 +. . . . xrf:uses/2 +. . . builtin:nl/0 +. . . builtin:write/1 +. . . xrf:uses/2 +. . builtin:nl/0 +. . user:tops_down/1 ***** looping ***** +. . builtin:write/1 +. builtin:write/1 +. user:xreport/0 +. . user:uses_report/0 +. . . builtin:findall/3 +. . . builtin:nl/0 +. . . builtin:sort/2 +. . . user:uses_report/1 +. . . . user:called_by_report/1 +. . . . . builtin: \= /2 +. . . . . builtin:nl/0 +. . . . . user:tab/1 +. . . . . . builtin:is/2 +. . . . . . user:tab/1 ***** looping ***** +. . . . . . user:tab_text/1 +. . . . . . builtin:write/1 +. . . . . builtin:write/1 +. . . . . user:write_list/2 +. . . . . . builtin:write/1 +. . . . . . user:write_list/2 ***** looping ***** +. . . . . xrf:used_by/2 +. . . . user:modified_report/1 +. . . . . builtin: \= /2 +. . . . . builtin:nl/0 +. . . . . user:tab/1 +. . . . . . builtin:is/2 +. . . . . . user:tab/1 ***** looping ***** +. . . . . . user:tab_text/1 +. . . . . . builtin:write/1 +. . . . . builtin:write/1 +. . . . . user:write_list/2 +. . . . . . builtin:write/1 +. . . . . . user:write_list/2 ***** looping ***** +. . . . . xrf:dynamic_pred/1 +. . . . . xrf:modified_in/2 +. . . . builtin:nl/0 +. . . . user:subgoal_report/1 +. . . . . builtin: \= /2 +. . . . . builtin:nl/0 +. . . . . user:tab/1 +. . . . . . builtin:is/2 +. . . . . . user:tab/1 ***** looping ***** +. . . . . . user:tab_text/1 +. . . . . . builtin:write/1 +. . . . . builtin:write/1 +. . . . . user:write_list/2 +. . . . . . builtin:write/1 +. . . . . . user:write_list/2 ***** looping ***** +. . . . . xrf:uses/2 +. . . . user:uses_report/1 ***** looping ***** +. . . . builtin:write/1 +. . . . xrf:dynamic_pred/1 +. . . builtin:write/1 +. . user:warning_report/0 +. . . builtin:findall/3 +. . . builtin:nl/0 +. . . builtin:sort/2 +. . . builtin:write/1 +. . . user:write_warnings/1 +. . . . builtin:nl/0 +. . . . user:write_list/2 +. . . . . builtin:write/1 +. . . . . user:write_list/2 ***** looping ***** +. . . . user:write_warnings/1 ***** looping ***** +. xrf:xref/1 +. . xrf:get_modified_in/0 +. . . builtin:findall/3 +. . . xrf:insert_list/3 +. . . . xrf:insert/3 +. . . . . builtin: @< /2 +. . . . . xrf:insert/3 ***** looping ***** +. . . . xrf:insert_list/3 ***** looping ***** +. . . xrf:uses/2 +. . . assert-xrf:modified_in/2 +. . xrf:get_used_by/0 +. . . builtin:findall/3 +. . . xrf:insert_list/3 +. . . . xrf:insert/3 +. . . . . builtin: @< /2 +. . . . . xrf:insert/3 ***** looping ***** +. . . . xrf:insert_list/3 ***** looping ***** +. . . xrf:uses/2 +. . . assert-xrf:used_by/2 +. . xrf:resolve_uses/0 +. . . xrf:resolve_dynamics/0 +. . . . xrf:dynamic_pred/1 +. . . . xrf:uses_temp/2 +. . . . assert-xrf:uses_temp/2 +. . . . assert-xrf:warning/2 +. . . xrf:resolve_uses/3 +. . . . xrf:find_mod/3 +. . . . . builtin:current_predicate/1 +. . . . . builtin:functor/3 +. . . . . xrf:import_mod/2 +. . . . . xrf:import_pred/2 +. . . . . builtin:predicate_property/2 +. . . . . xrf:uses_temp/2 +. . . . . xrf:visible/1 +. . . . . . builtin:current_predicate/1 +. . . . . . xrf:export_pred/2 +. . . . . . builtin:predicate_property/2 +. . . . . . xrf:uses_temp/2 +. . . . xrf:resolve_uses/3 ***** looping ***** +. . . xrf:uses_temp/2 +. . . assert-xrf:uses/2 +. . xrf:warn_undefined/0 +. . . xrf:uses/2 +. . . xrf:warn_undef/2 +. . . . xrf:warn_undef/2 ***** looping ***** +. . . . assert-xrf:warning/2 +. . xrf:warn_unused/0 +. . . xrf:used_by/2 +. . . assert-xrf:warning/2 +. . xrf:xinit/0 +. . . builtin:retractall/1 +. . . assert-xrf:open_module/1 +. . xrf:xinput/1 +. . . builtin: == /2 +. . . xrf:bad_term/2 +. . . . xrf:bad_body/2 +. . . . . xrf:bad_body/2 ***** looping ***** +. . . . builtin:line_count/2 +. . . . builtin:stream_property/2 +. . . . assert-xrf:warning/2 +. . . builtin:close/1 +. . . xrf:file/2 +. . . builtin:line_count/2 +. . . builtin:open/3 +. . . xrf:process/4 +. . . . xrf:add_discontiguous/2 +. . . . . xrf:add_discontiguous/2 ***** looping ***** +. . . . . assert-xrf:discontig_pred/1 +. . . . xrf:add_dynamic/2 +. . . . . builtin: = /2 +. . . . . builtin: == /2 +. . . . . xrf:add_dynamic/2 ***** looping ***** +. . . . . xrf:assert_dynamic/1 +. . . . . . xrf:dynamic_pred/1 +. . . . . . assert-xrf:dynamic_pred/1 +. . . . . xrf:mod_functor/4 +. . . . . . builtin:functor/3 +. . . . xrf:add_export/2 +. . . . . xrf:add_export/2 ***** looping ***** +. . . . . assert-xrf:export_pred/2 +. . . . xrf:add_import/2 +. . . . . xrf:add_import/2 ***** looping ***** +. . . . . assert-xrf:import_mod/2 +. . . . . assert-xrf:import_pred/2 +. . . . builtin:expand_term/2 +. . . . xrf:file/2 +. . . . builtin:functor/3 +. . . . xrf:get_uses/1 +. . . . . xrf:discontig_check/1 +. . . . . . xrf:discontig_pred/1 +. . . . . . xrf:last_clause/1 +. . . . . . xrf:uses_temp/2 +. . . . . . assert-xrf:warning/2 +. . . . . xrf:uses_temp/2 +. . . . . assert-xrf:uses_temp/2 +. . . . xrf:get_uses/2 +. . . . . builtin: = /2 +. . . . . xrf:add_use/3 +. . . . . . builtin: = /2 +. . . . . . builtin: == /2 +. . . . . . xrf:add_dynamic/2 +. . . . . . . builtin: = /2 +. . . . . . . builtin: == /2 +. . . . . . . xrf:add_dynamic/2 ***** looping ***** +. . . . . . . xrf:assert_dynamic/1 +. . . . . . . . xrf:dynamic_pred/1 +. . . . . . . . assert-xrf:dynamic_pred/1 +. . . . . . . xrf:mod_functor/4 +. . . . . . . . builtin:functor/3 +. . . . . . xrf:add_use/3 ***** looping ***** +. . . . . . xrf:insert/3 +. . . . . . . builtin: @< /2 +. . . . . . . xrf:insert/3 ***** looping ***** +. . . . . . xrf:is_assert/2 +. . . . . . builtin:memberchk/2 +. . . . . . xrf:mod_functor/4 +. . . . . . . builtin:functor/3 +. . . . . . builtin:nonvar/1 +. . . . . . xrf:open_module/1 +. . . . . . builtin:var/1 +. . . . . xrf:discontig_check/1 +. . . . . . xrf:discontig_pred/1 +. . . . . . xrf:last_clause/1 +. . . . . . xrf:uses_temp/2 +. . . . . . assert-xrf:warning/2 +. . . . . assert-xrf:uses_temp/2 +. . . . . retract-de_fault:uses_temp/2 +. . . . xrf:module_file/2 +. . . . builtin:op/3 +. . . . xrf:open_module/1 +. . . . xrf:pred_loc/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:set_last_clause/1 +. . . . . assert-xrf:last_clause/1 +. . . . . retract-de_fault:last_clause/1 +. . . . xrf:set_open_module/1 +. . . . . assert-xrf:open_module/1 +. . . . . retract-de_fault:open_module/1 +. . . . xrf:xinput/1 ***** looping ***** +. . . . undefined:xread/1 +. . . . assert-xrf:module_file/2 +. . . . assert-xrf:pred_loc/4 +. . . builtin:read/2 +. . . builtin:repeat/0 +. . . xrf:xinput/1 ***** looping ***** +. . . assert-xrf:file/2 + +----- Going Down xrf:used_by2/2 ---------- + +xrf:used_by2/2 uses: + +----- Going Down xrf:uses2/2 ---------- + +xrf:uses2/2 uses: + +----- Going Down xrf:warning/2 ---------- + +xrf:warning/2 uses: + +----- Coming Up user:tab_text/1 ---------- + +user:tab_text/1 modified in: +. user:set_tab/1 +. . user:main/0 + +user:tab_text/1 used by: +. user:tab/1 +. . user:called_by_report/1 +. . . user:uses_report/1 +. . . . user:uses_report/0 +. . . . . user:xreport/0 +. . . . . . user:main/0 +. . . . user:uses_report/1 ***** looping ***** +. . user:cones_above/3 +. . . user:cone_above/1 +. . . . user:bottoms_up/1 +. . . . . user:bottoms_up/1 ***** looping ***** +. . . . . user:main/0 +. . . user:cones_above/3 ***** looping ***** +. . user:cones_below/3 +. . . user:cone_below/1 +. . . . user:tops_down/1 +. . . . . user:main/0 +. . . . . user:tops_down/1 ***** looping ***** +. . . user:cones_below/3 ***** looping ***** +. . user:modified_report/1 +. . . user:uses_report/1 +. . . . user:uses_report/0 +. . . . . user:xreport/0 +. . . . . . user:main/0 +. . . . user:uses_report/1 ***** looping ***** +. . user:subgoal_report/1 +. . . user:uses_report/1 +. . . . user:uses_report/0 +. . . . . user:xreport/0 +. . . . . . user:main/0 +. . . . user:uses_report/1 ***** looping ***** +. . user:tab/1 ***** looping ***** + +----- Coming Up xrf:used_by2/2 ---------- + +xrf:used_by2/2 modified in: +. xrf:convert_used_by/0 +. . xrf:get_xlists/2 + +xrf:used_by2/2 used by: + +----- Coming Up xrf:uses2/2 ---------- + +xrf:uses2/2 modified in: +. xrf:convert_uses/0 +. . xrf:get_xlists/2 + +xrf:uses2/2 used by: + +----- Coming Up xrf:modified_in/2 ---------- + +xrf:modified_in/2 modified in: +. xrf:get_modified_in/0 +. . xrf:xref/1 +. . . user:main/0 + +xrf:modified_in/2 used by: +. user:cone_above/1 +. . user:bottoms_up/1 +. . . user:bottoms_up/1 ***** looping ***** +. . . user:main/0 +. user:modified_report/1 +. . user:uses_report/1 +. . . user:uses_report/0 +. . . . user:xreport/0 +. . . . . user:main/0 +. . . user:uses_report/1 ***** looping ***** + +----- Coming Up xrf:module_file/2 ---------- + +xrf:module_file/2 modified in: +. xrf:process/4 +. . xrf:process/4 ***** looping ***** +. . xrf:xinput/1 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:main/0 + +xrf:module_file/2 used by: +. xrf:process/4 +. . xrf:process/4 ***** looping ***** +. . xrf:xinput/1 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:main/0 + +----- Coming Up xrf:pred_loc/4 ---------- + +xrf:pred_loc/4 modified in: +. xrf:process/4 +. . xrf:process/4 ***** looping ***** +. . xrf:xinput/1 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:main/0 + +xrf:pred_loc/4 used by: +. xrf:get_pred_loc/4 +. . xrf:convert_mfa_list/2 +. . . xrf:convert_mfa_list/2 ***** looping ***** +. . . xrf:convert_used_by/0 +. . . . xrf:get_xlists/2 +. . . xrf:convert_uses/0 +. . . . xrf:get_xlists/2 +. xrf:process/4 +. . xrf:process/4 ***** looping ***** +. . xrf:xinput/1 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:main/0 + +----- Coming Up xrf:file/2 ---------- + +xrf:file/2 modified in: +. xrf:xinput/1 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . xrf:xinput/1 ***** looping ***** +. . xrf:xref/1 +. . . user:main/0 + +xrf:file/2 used by: +. xrf:process/4 +. . xrf:process/4 ***** looping ***** +. . xrf:xinput/1 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:main/0 +. xrf:xinput/1 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . xrf:xinput/1 ***** looping ***** +. . xrf:xref/1 +. . . user:main/0 + +----- Coming Up xrf:last_clause/1 ---------- + +xrf:last_clause/1 modified in: +. xrf:set_last_clause/1 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:main/0 + +xrf:last_clause/1 used by: +. xrf:discontig_check/1 +. . xrf:get_uses/1 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:main/0 +. . xrf:get_uses/2 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:main/0 + +----- Coming Up xrf:discontig_pred/1 ---------- + +xrf:discontig_pred/1 modified in: +. xrf:add_discontiguous/2 +. . xrf:add_discontiguous/2 ***** looping ***** +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:main/0 + +xrf:discontig_pred/1 used by: +. xrf:discontig_check/1 +. . xrf:get_uses/1 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:main/0 +. . xrf:get_uses/2 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:main/0 + +----- Coming Up xrf:warning/2 ---------- + +xrf:warning/2 modified in: +. xrf:bad_term/2 +. . xrf:xinput/1 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:main/0 +. xrf:discontig_check/1 +. . xrf:get_uses/1 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:main/0 +. . xrf:get_uses/2 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:main/0 +. xrf:resolve_dynamics/0 +. . xrf:resolve_uses/0 +. . . xrf:get_xlists/2 +. . . xrf:xref/1 +. . . . user:main/0 +. xrf:warn_undef/2 +. . xrf:warn_undef/2 ***** looping ***** +. . xrf:warn_undefined/0 +. . . xrf:get_xlists/2 +. . . xrf:xref/1 +. . . . user:main/0 +. xrf:warn_unused/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:main/0 + +xrf:warning/2 used by: + +----- Coming Up xrf:open_module/1 ---------- + +xrf:open_module/1 modified in: +. xrf:set_open_module/1 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:main/0 +. xrf:xinit/0 +. . xrf:xref/1 +. . . user:main/0 + +xrf:open_module/1 used by: +. xrf:add_use/3 +. . xrf:add_use/3 ***** looping ***** +. . xrf:get_uses/2 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:main/0 +. xrf:process/4 +. . xrf:process/4 ***** looping ***** +. . xrf:xinput/1 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:main/0 + +----- Coming Up xrf:used_by/2 ---------- + +xrf:used_by/2 modified in: +. xrf:get_used_by/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:main/0 + +xrf:used_by/2 used by: +. user:called_by_report/1 +. . user:uses_report/1 +. . . user:uses_report/0 +. . . . user:xreport/0 +. . . . . user:main/0 +. . . user:uses_report/1 ***** looping ***** +. user:cone_above/1 +. . user:bottoms_up/1 +. . . user:bottoms_up/1 ***** looping ***** +. . . user:main/0 +. user:cones_above/3 +. . user:cone_above/1 +. . . user:bottoms_up/1 +. . . . user:bottoms_up/1 ***** looping ***** +. . . . user:main/0 +. . user:cones_above/3 ***** looping ***** +. xrf:warn_unused/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:main/0 + +----- Coming Up xrf:dynamic_pred/1 ---------- + +xrf:dynamic_pred/1 modified in: +. xrf:assert_dynamic/1 +. . xrf:add_dynamic/2 +. . . xrf:add_dynamic/2 ***** looping ***** +. . . xrf:add_use/3 +. . . . xrf:add_use/3 ***** looping ***** +. . . . xrf:get_uses/2 +. . . . . xrf:process/4 +. . . . . . xrf:process/4 ***** looping ***** +. . . . . . xrf:xinput/1 +. . . . . . . xrf:process/4 ***** looping ***** +. . . . . . . xrf:xinput/1 ***** looping ***** +. . . . . . . xrf:xref/1 +. . . . . . . . user:main/0 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:main/0 + +xrf:dynamic_pred/1 used by: +. user:modified_report/1 +. . user:uses_report/1 +. . . user:uses_report/0 +. . . . user:xreport/0 +. . . . . user:main/0 +. . . user:uses_report/1 ***** looping ***** +. user:uses_report/1 +. . user:uses_report/0 +. . . user:xreport/0 +. . . . user:main/0 +. . user:uses_report/1 ***** looping ***** +. xrf:assert_dynamic/1 +. . xrf:add_dynamic/2 +. . . xrf:add_dynamic/2 ***** looping ***** +. . . xrf:add_use/3 +. . . . xrf:add_use/3 ***** looping ***** +. . . . xrf:get_uses/2 +. . . . . xrf:process/4 +. . . . . . xrf:process/4 ***** looping ***** +. . . . . . xrf:xinput/1 +. . . . . . . xrf:process/4 ***** looping ***** +. . . . . . . xrf:xinput/1 ***** looping ***** +. . . . . . . xrf:xref/1 +. . . . . . . . user:main/0 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:main/0 +. xrf:resolve_dynamics/0 +. . xrf:resolve_uses/0 +. . . xrf:get_xlists/2 +. . . xrf:xref/1 +. . . . user:main/0 + +----- Coming Up xrf:export_pred/2 ---------- + +xrf:export_pred/2 modified in: +. xrf:add_export/2 +. . xrf:add_export/2 ***** looping ***** +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:main/0 + +xrf:export_pred/2 used by: +. xrf:visible/1 +. . xrf:find_mod/3 +. . . xrf:resolve_uses/3 +. . . . xrf:resolve_uses/0 +. . . . . xrf:get_xlists/2 +. . . . . xrf:xref/1 +. . . . . . user:main/0 +. . . . xrf:resolve_uses/3 ***** looping ***** + +----- Coming Up xrf:import_pred/2 ---------- + +xrf:import_pred/2 modified in: +. xrf:add_import/2 +. . xrf:add_import/2 ***** looping ***** +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:main/0 + +xrf:import_pred/2 used by: +. xrf:find_mod/3 +. . xrf:resolve_uses/3 +. . . xrf:resolve_uses/0 +. . . . xrf:get_xlists/2 +. . . . xrf:xref/1 +. . . . . user:main/0 +. . . xrf:resolve_uses/3 ***** looping ***** + +----- Coming Up xrf:import_mod/2 ---------- + +xrf:import_mod/2 modified in: +. xrf:add_import/2 +. . xrf:add_import/2 ***** looping ***** +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:main/0 + +xrf:import_mod/2 used by: +. xrf:find_mod/3 +. . xrf:resolve_uses/3 +. . . xrf:resolve_uses/0 +. . . . xrf:get_xlists/2 +. . . . xrf:xref/1 +. . . . . user:main/0 +. . . xrf:resolve_uses/3 ***** looping ***** + +----- Coming Up xrf:uses/2 ---------- + +xrf:uses/2 modified in: +. xrf:resolve_uses/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:main/0 + +xrf:uses/2 used by: +. user:cone_below/1 +. . user:tops_down/1 +. . . user:main/0 +. . . user:tops_down/1 ***** looping ***** +. user:cones_below/3 +. . user:cone_below/1 +. . . user:tops_down/1 +. . . . user:main/0 +. . . . user:tops_down/1 ***** looping ***** +. . user:cones_below/3 ***** looping ***** +. user:subgoal_report/1 +. . user:uses_report/1 +. . . user:uses_report/0 +. . . . user:xreport/0 +. . . . . user:main/0 +. . . user:uses_report/1 ***** looping ***** +. xrf:get_modified_in/0 +. . xrf:xref/1 +. . . user:main/0 +. xrf:get_used_by/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:main/0 +. xrf:warn_undefined/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:main/0 + +----- Coming Up xrf:uses_temp/2 ---------- + +xrf:uses_temp/2 modified in: +. xrf:get_uses/1 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:main/0 +. xrf:get_uses/2 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:main/0 +. xrf:resolve_dynamics/0 +. . xrf:resolve_uses/0 +. . . xrf:get_xlists/2 +. . . xrf:xref/1 +. . . . user:main/0 + +xrf:uses_temp/2 used by: +. xrf:discontig_check/1 +. . xrf:get_uses/1 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:main/0 +. . xrf:get_uses/2 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:main/0 +. xrf:find_mod/3 +. . xrf:resolve_uses/3 +. . . xrf:resolve_uses/0 +. . . . xrf:get_xlists/2 +. . . . xrf:xref/1 +. . . . . user:main/0 +. . . xrf:resolve_uses/3 ***** looping ***** +. xrf:get_uses/1 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:main/0 +. xrf:resolve_dynamics/0 +. . xrf:resolve_uses/0 +. . . xrf:get_xlists/2 +. . . xrf:xref/1 +. . . . user:main/0 +. xrf:resolve_uses/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:main/0 +. xrf:visible/1 +. . xrf:find_mod/3 +. . . xrf:resolve_uses/3 +. . . . xrf:resolve_uses/0 +. . . . . xrf:get_xlists/2 +. . . . . xrf:xref/1 +. . . . . . user:main/0 +. . . . xrf:resolve_uses/3 ***** looping ***** diff --git a/output_amzi.txt b/output_amzi.txt new file mode 100644 index 0000000..c6601a7 --- /dev/null +++ b/output_amzi.txt @@ -0,0 +1,171 @@ + +----- Warnings ----- +Dynamic and static definitions for: data:loc/2 +Unused predicate: user:dw_main/0 + +----- Predicate Use ----- +data:loc/2 + no subgoals + called from: + rules:look_here/1 + rules:look_have/1 + rules:look/0 + rules:take/1 + rules:chase/1 + rules:goto/1 + rules:move/2 + rules:fox/0 + rules:ducks/0 + rules:done/0 +data:nextto/2 + no subgoals + called from: + rules:connect/2 +rules:chase/1 + subgoals: + data:loc/2 + rules:move/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:do/1 +rules:connect/2 + subgoals: + data:nextto/2 + called from: + rules:look_connect/1 + rules:goto/1 +rules:demons/0 + subgoals: + rules:ducks/0 + rules:fox/0 + called from: + user:go/0 +rules:do/1 + subgoals: + rules:chase/1 + rules:goto/1 + user:instructions/0 + builtin:listing/0 + rules:look/0 + builtin:nl/0 + rules:report/0 + rules:take/1 + builtin:write/1 + called from: + user:go/0 +rules:done/0 + subgoals: + data:loc/2 + builtin:nl/0 + builtin:write/1 + called from: + user:go/0 +rules:ducks/0 + subgoals: + data:loc/2 + rules:move/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:demons/0 +rules:fox/0 + subgoals: + data:loc/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:demons/0 +rules:goto/1 + subgoals: + rules:connect/2 + data:loc/2 + rules:move/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:do/1 +rules:look/0 + subgoals: + data:loc/2 + rules:look_connect/1 + rules:look_have/1 + rules:look_here/1 + builtin:nl/0 + builtin:write/1 + called from: + rules:do/1 +rules:look_connect/1 + subgoals: + rules:connect/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:look/0 +rules:look_have/1 + subgoals: + data:loc/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:look/0 +rules:look_here/1 + subgoals: + builtin:\=/2 + data:loc/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:look/0 +rules:move/2 + subgoals: + data:loc/2 + builtin:assert/1 + builtin:retract/1 + called from: + rules:take/1 + rules:chase/1 + rules:goto/1 + rules:ducks/0 +rules:report/0 + subgoals: + builtin:findall/3 + builtin:nl/0 + builtin:write/1 + called from: + rules:do/1 +rules:take/1 + subgoals: + data:loc/2 + rules:move/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:do/1 +user:dw_main/0 + subgoals: + user:go/0 + user:instructions/0 + builtin:nl/0 + builtin:write/1 + no callers +user:go/0 + subgoals: + builtin:\=/2 + rules:demons/0 + rules:do/1 + rules:done/0 + user:go/0 + builtin:nl/0 + builtin:read/1 + builtin:write/1 + called from: + user:go/0 + user:dw_main/0 +user:instructions/0 + subgoals: + builtin:nl/0 + builtin:write/1 + called from: + rules:do/1 + user:dw_main/0 diff --git a/output_axrf_itself.txt b/output_axrf_itself.txt new file mode 100644 index 0000000..c4bb101 --- /dev/null +++ b/output_axrf_itself.txt @@ -0,0 +1,548 @@ + +----- Warnings ----- +Discontiguous definition of: user:(:-)/1 +Undefined: current_directory/2 in module user called from main/0 +Undefined: xread/1 in module user called from process/4 +Unused predicate: user:,/2 +Unused predicate: user:(:-)/1 +Unused predicate: user:main/0 +Unused predicate: user:xref/1 +Unused predicate: user:xref/3 + +----- Predicate Use ----- +user:,/2 + no subgoals + no callers +user:(:-)/1 + no subgoals + no callers +user:add_discontiguous/2 + subgoals: + user:add_discontiguous/2 + builtin:assert/1 + user:discontig_pred/1 + called from: + user:add_discontiguous/2 + user:process/4 +user:add_dynamic/2 + subgoals: + builtin: = /2 + builtin: == /2 + user:add_dynamic/2 + user:assert_dynamic/1 + user:mod_functor/4 + called from: + user:add_use/3 + user:add_dynamic/2 + user:process/4 +user:add_export/2 + subgoals: + user:add_export/2 + builtin:asserta/1 + user:export_pred/2 + called from: + user:add_export/2 + user:process/4 +user:add_import/2 + subgoals: + user:add_import/2 + builtin:asserta/1 + user:import_mod/2 + user:import_pred/2 + called from: + user:add_import/2 + user:process/4 +user:add_use/3 + subgoals: + builtin: = /2 + builtin: == /2 + user:add_dynamic/2 + user:add_use/3 + user:insert/3 + user:is_assert/2 + builtin:memberchk/2 + user:mod_functor/4 + builtin:nonvar/1 + user:open_module/1 + builtin:var/1 + called from: + user:add_use/3 + user:get_uses/2 +user:assert_dynamic/1 + subgoals: + builtin:asserta/1 + user:dynamic_pred/1 + user:dynamic_pred/1 + called from: + user:add_dynamic/2 +user:bad_body/2 + subgoals: + user:bad_body/2 + called from: + user:bad_body/2 + user:bad_term/2 +user:bad_term/2 + subgoals: + builtin:assert/1 + user:bad_body/2 + builtin:line_count/2 + builtin:stream_property/2 + user:warning/2 + called from: + user:xinput/1 +user:cone_below/1 + subgoals: + axrf:uses/2 + user:cones_below/3 + builtin:nl/0 + user:tab/1 + builtin:write/1 + called from: + user:main/0 +user:cones_below/3 + subgoals: + axrf:uses/2 + user:cones_below/3 + builtin:is/2 + builtin:memberchk/2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + called from: + user:cones_below/3 + user:cone_below/1 +user:convert_mfa_list/2 + subgoals: + user:convert_mfa_list/2 + user:get_pred_loc/4 + called from: + user:convert_mfa_list/2 + user:convert_used_by/0 + user:convert_uses/0 +user:convert_used_by/0 + subgoals: + builtin:assertz/1 + user:convert_mfa_list/2 + builtin:retract/1 + user:used_by/2 + user:used_by2/2 + called from: + user:get_xlists/2 +user:convert_uses/0 + subgoals: + builtin:assertz/1 + user:convert_mfa_list/2 + builtin:retract/1 + user:uses/2 + user:uses2/2 + called from: + user:get_xlists/2 +user:discontig_check/1 + subgoals: + builtin:asserta/1 + user:discontig_pred/1 + user:last_clause/1 + user:uses_temp/2 + user:warning/2 + called from: + user:get_uses/2 + user:get_uses/1 +user:discontig_pred/1 + no subgoals + called from: + user:discontig_check/1 + user:add_discontiguous/2 +user:dynamic_pred/1 + no subgoals + called from: + user:resolve_dynamics/0 + user:assert_dynamic/1 +user:export_pred/2 + no subgoals + called from: + user:visible/1 + user:add_export/2 +user:file/2 + no subgoals + called from: + user:process/4 + user:xinput/1 +user:find_mod/3 + subgoals: + builtin:current_predicate/1 + builtin:functor/3 + user:import_mod/2 + user:import_pred/2 + builtin:predicate_property/2 + user:uses_temp/2 + user:visible/1 + called from: + user:resolve_uses/3 +user:get_pred_loc/4 + subgoals: + user:pred_loc/4 + called from: + user:convert_mfa_list/2 +user:get_used_by/0 + subgoals: + builtin:asserta/1 + builtin:findall/3 + user:insert_list/3 + user:uses/2 + user:used_by/2 + called from: + user:get_xlists/2 + user:xref/1 +user:get_uses/1 + subgoals: + builtin:asserta/1 + user:discontig_check/1 + user:uses_temp/2 + user:uses_temp/2 + called from: + user:process/4 +user:get_uses/2 + subgoals: + builtin: = /2 + user:add_use/3 + builtin:asserta/1 + user:discontig_check/1 + builtin:retract/1 + user:uses_temp/2 + user:uses_temp/2 + called from: + user:process/4 +user:get_xlists/2 + subgoals: + user:convert_used_by/0 + user:convert_uses/0 + builtin:findall/3 + user:get_used_by/0 + user:resolve_uses/0 + builtin:sort/2 + user:warn_undefined/0 + user:warn_unused/0 + called from: + user:xref/3 +user:here/1 + no subgoals + called from: + user:main/0 +user:import_mod/2 + no subgoals + called from: + user:find_mod/3 + user:add_import/2 +user:import_pred/2 + no subgoals + called from: + user:find_mod/3 + user:add_import/2 +user:insert/3 + subgoals: + builtin: @< /2 + user:insert/3 + called from: + user:insert/3 + user:insert_list/3 + user:add_use/3 +user:insert_list/3 + subgoals: + user:insert/3 + user:insert_list/3 + called from: + user:insert_list/3 + user:get_used_by/0 +user:is_assert/2 + no subgoals + called from: + user:add_use/3 +user:last_clause/1 + no subgoals + called from: + user:set_last_clause/1 + user:discontig_check/1 +user:main/0 + subgoals: + axrf:xref/1 + user:cone_below/1 + undefined:current_directory/2 + user:here/1 + builtin:nl/0 + user:set_tab/1 + builtin:tell/1 + builtin:told/0 + builtin:write/1 + user:xreport/0 + no callers +user:mod_functor/4 + subgoals: + builtin:functor/3 + called from: + user:add_use/3 + user:add_dynamic/2 +user:open_module/1 + no subgoals + called from: + user:set_open_module/1 + user:add_use/3 + user:process/4 + user:xinit/0 +user:pred_loc/4 + no subgoals + called from: + user:get_pred_loc/4 + user:process/4 +user:process/4 + subgoals: + user:add_discontiguous/2 + user:add_dynamic/2 + user:add_export/2 + user:add_import/2 + builtin:assertz/1 + builtin:expand_term/2 + user:file/2 + builtin:functor/3 + user:get_uses/1 + user:get_uses/2 + builtin:op/3 + user:open_module/1 + user:pred_loc/4 + user:process/4 + user:set_last_clause/1 + user:set_open_module/1 + undefined:xread/1 + user:pred_loc/4 + called from: + user:process/4 + user:xinput/1 +user:resolve_dynamics/0 + subgoals: + builtin:assert/1 + builtin:asserta/1 + user:dynamic_pred/1 + user:uses_temp/2 + user:uses_temp/2 + user:warning/2 + called from: + user:resolve_uses/0 +user:resolve_uses/0 + subgoals: + builtin:assertz/1 + user:resolve_dynamics/0 + user:resolve_uses/3 + user:uses_temp/2 + user:uses/2 + called from: + user:get_xlists/2 + user:xref/1 +user:resolve_uses/3 + subgoals: + user:find_mod/3 + user:resolve_uses/3 + called from: + user:resolve_uses/3 + user:resolve_uses/0 +user:set_last_clause/1 + subgoals: + builtin:assert/1 + user:last_clause/1 + builtin:retract/1 + user:last_clause/1 + called from: + user:process/4 +user:set_open_module/1 + subgoals: + builtin:assert/1 + user:open_module/1 + builtin:retract/1 + user:open_module/1 + called from: + user:process/4 +user:set_tab/1 + subgoals: + builtin:assert/1 + builtin:retractall/1 + user:tab_text/1 + called from: + user:main/0 +user:tab/1 + subgoals: + builtin:is/2 + user:tab/1 + user:tab_text/1 + builtin:write/1 + called from: + user:cones_below/3 + user:cone_below/1 + user:tab/1 + user:uses_report/1 +user:tab_text/1 + no subgoals + called from: + user:set_tab/1 + user:tab/1 +user:used_by/2 + no subgoals + called from: + user:warn_unused/0 + user:convert_used_by/0 + user:get_used_by/0 +user:used_by2/2 + no subgoals + called from: + user:convert_used_by/0 +user:uses/2 + no subgoals + called from: + user:warn_undefined/0 + user:convert_uses/0 + user:get_used_by/0 + user:resolve_uses/0 +user:uses2/2 + no subgoals + called from: + user:convert_uses/0 +user:uses_report/0 + subgoals: + builtin:findall/3 + builtin:nl/0 + builtin:sort/2 + user:uses_report/1 + builtin:write/1 + called from: + user:xreport/0 +user:uses_report/1 + subgoals: + axrf:used_by/2 + axrf:uses/2 + builtin: \= /2 + builtin:nl/0 + user:tab/1 + user:uses_report/1 + builtin:write/1 + user:write_list/2 + called from: + user:uses_report/1 + user:uses_report/0 +user:uses_temp/2 + no subgoals + called from: + user:visible/1 + user:find_mod/3 + user:resolve_dynamics/0 + user:resolve_uses/0 + user:discontig_check/1 + user:get_uses/2 + user:get_uses/1 +user:visible/1 + subgoals: + builtin:current_predicate/1 + user:export_pred/2 + builtin:predicate_property/2 + user:uses_temp/2 + called from: + user:find_mod/3 +user:warn_undef/2 + subgoals: + builtin:asserta/1 + user:warn_undef/2 + user:warning/2 + called from: + user:warn_undef/2 + user:warn_undefined/0 +user:warn_undefined/0 + subgoals: + user:uses/2 + user:warn_undef/2 + called from: + user:get_xlists/2 + user:xref/1 +user:warn_unused/0 + subgoals: + builtin:asserta/1 + user:used_by/2 + user:warning/2 + called from: + user:get_xlists/2 + user:xref/1 +user:warning/2 + no subgoals + called from: + user:warn_undef/2 + user:warn_unused/0 + user:resolve_dynamics/0 + user:discontig_check/1 + user:bad_term/2 +user:warning_report/0 + subgoals: + builtin:findall/3 + builtin:nl/0 + builtin:sort/2 + builtin:write/1 + user:write_warnings/1 + called from: + user:xreport/0 +user:write_list/2 + subgoals: + builtin:write/1 + user:write_list/2 + called from: + user:write_list/2 + user:write_warnings/1 + user:uses_report/1 +user:write_warnings/1 + subgoals: + builtin:nl/0 + user:write_list/2 + user:write_warnings/1 + called from: + user:write_warnings/1 + user:warning_report/0 +user:xinit/0 + subgoals: + builtin:assert/1 + builtin:retractall/1 + user:open_module/1 + called from: + user:xref/3 + user:xref/1 +user:xinput/1 + subgoals: + builtin: == /2 + builtin:asserta/1 + user:bad_term/2 + builtin:close/1 + user:file/2 + builtin:line_count/2 + builtin:open/3 + user:process/4 + builtin:read/2 + builtin:repeat/0 + user:xinput/1 + user:file/2 + called from: + user:xinput/1 + user:xref/3 + user:xref/1 +user:xref/1 + subgoals: + user:get_used_by/0 + user:resolve_uses/0 + user:warn_undefined/0 + user:warn_unused/0 + user:xinit/0 + user:xinput/1 + no callers +user:xref/3 + subgoals: + user:get_xlists/2 + user:xinit/0 + user:xinput/1 + no callers +user:xreport/0 + subgoals: + user:uses_report/0 + user:warning_report/0 + called from: + user:main/0 diff --git a/output_duckworld.txt b/output_duckworld.txt new file mode 100644 index 0000000..efb07ca --- /dev/null +++ b/output_duckworld.txt @@ -0,0 +1,329 @@ + +----- Warnings ----- +Dynamic and static definitions for: data:loc/2 +Unused predicate: user:main/0 + +----- Predicate Use ----- +data:loc/2 dynamic + modified in: + rules:move/2 + no subgoals + called from: + rules:chase/1 + rules:done/0 + rules:ducks/0 + rules:fox/0 + rules:goto/1 + rules:look/0 + rules:look_have/1 + rules:look_here/1 + rules:take/1 +data:nextto/2 + no subgoals + called from: + rules:connect/2 +rules:chase/1 + subgoals: + data:loc/2 + rules:move/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:do/1 +rules:connect/2 + subgoals: + data:nextto/2 + called from: + rules:goto/1 + rules:look_connect/1 +rules:demons/0 + subgoals: + rules:ducks/0 + rules:fox/0 + called from: + user:go/0 +rules:do/1 + subgoals: + rules:chase/1 + rules:goto/1 + user:instructions/0 + builtin:listing/0 + rules:look/0 + builtin:nl/0 + rules:report/0 + rules:take/1 + builtin:write/1 + called from: + user:go/0 +rules:done/0 + subgoals: + data:loc/2 + builtin:nl/0 + builtin:write/1 + called from: + user:go/0 +rules:ducks/0 + subgoals: + data:loc/2 + rules:move/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:demons/0 +rules:fox/0 + subgoals: + data:loc/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:demons/0 +rules:goto/1 + subgoals: + rules:connect/2 + data:loc/2 + rules:move/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:do/1 +rules:look/0 + subgoals: + data:loc/2 + rules:look_connect/1 + rules:look_have/1 + rules:look_here/1 + builtin:nl/0 + builtin:write/1 + called from: + rules:do/1 +rules:look_connect/1 + subgoals: + rules:connect/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:look/0 +rules:look_have/1 + subgoals: + data:loc/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:look/0 +rules:look_here/1 + subgoals: + builtin: \= /2 + data:loc/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:look/0 +rules:move/2 + subgoals: + assert-data:loc/2 + retract-data:loc/2 + called from: + rules:chase/1 + rules:ducks/0 + rules:goto/1 + rules:take/1 +rules:report/0 + subgoals: + builtin:findall/3 + builtin:nl/0 + builtin:write/1 + called from: + rules:do/1 +rules:take/1 + subgoals: + data:loc/2 + rules:move/2 + builtin:nl/0 + builtin:write/1 + called from: + rules:do/1 +user:go/0 + subgoals: + builtin: \= /2 + rules:demons/0 + rules:do/1 + rules:done/0 + user:go/0 + builtin:nl/0 + builtin:read/1 + builtin:write/1 + called from: + user:go/0 + user:main/0 +user:instructions/0 + subgoals: + builtin:nl/0 + builtin:write/1 + called from: + rules:do/1 + user:main/0 +user:main/0 + subgoals: + user:go/0 + user:instructions/0 + builtin:nl/0 + builtin:write/1 + no callers + +----- Going Down user:main/0 ---------- + + +user:main/0 uses: +. user:go/0 +. . builtin: \= /2 +. . rules:demons/0 +. . . rules:ducks/0 +. . . . data:loc/2 +. . . . rules:move/2 +. . . . . assert-data:loc/2 +. . . . . retract-data:loc/2 +. . . . builtin:nl/0 +. . . . builtin:write/1 +. . . rules:fox/0 +. . . . data:loc/2 +. . . . builtin:nl/0 +. . . . builtin:write/1 +. . rules:do/1 +. . . rules:chase/1 +. . . . data:loc/2 +. . . . rules:move/2 +. . . . . assert-data:loc/2 +. . . . . retract-data:loc/2 +. . . . builtin:nl/0 +. . . . builtin:write/1 +. . . rules:goto/1 +. . . . rules:connect/2 +. . . . . data:nextto/2 +. . . . data:loc/2 +. . . . rules:move/2 +. . . . . assert-data:loc/2 +. . . . . retract-data:loc/2 +. . . . builtin:nl/0 +. . . . builtin:write/1 +. . . user:instructions/0 +. . . . builtin:nl/0 +. . . . builtin:write/1 +. . . builtin:listing/0 +. . . rules:look/0 +. . . . data:loc/2 +. . . . rules:look_connect/1 +. . . . . rules:connect/2 +. . . . . . data:nextto/2 +. . . . . builtin:nl/0 +. . . . . builtin:write/1 +. . . . rules:look_have/1 +. . . . . data:loc/2 +. . . . . builtin:nl/0 +. . . . . builtin:write/1 +. . . . rules:look_here/1 +. . . . . builtin: \= /2 +. . . . . data:loc/2 +. . . . . builtin:nl/0 +. . . . . builtin:write/1 +. . . . builtin:nl/0 +. . . . builtin:write/1 +. . . builtin:nl/0 +. . . rules:report/0 +. . . . builtin:findall/3 +. . . . builtin:nl/0 +. . . . builtin:write/1 +. . . rules:take/1 +. . . . data:loc/2 +. . . . rules:move/2 +. . . . . assert-data:loc/2 +. . . . . retract-data:loc/2 +. . . . builtin:nl/0 +. . . . builtin:write/1 +. . . builtin:write/1 +. . rules:done/0 +. . . data:loc/2 +. . . builtin:nl/0 +. . . builtin:write/1 +. . user:go/0 ***** looping ***** +. . builtin:nl/0 +. . builtin:read/1 +. . builtin:write/1 +. user:instructions/0 +. . builtin:nl/0 +. . builtin:write/1 +. builtin:nl/0 +. builtin:write/1 + +----- Coming Up data:loc/2 ---------- + + +data:loc/2 modified in: +. rules:move/2 +. . rules:chase/1 +. . . rules:do/1 +. . . . user:go/0 +. . . . . user:go/0 ***** looping ***** +. . . . . user:main/0 +. . rules:ducks/0 +. . . rules:demons/0 +. . . . user:go/0 +. . . . . user:go/0 ***** looping ***** +. . . . . user:main/0 +. . rules:goto/1 +. . . rules:do/1 +. . . . user:go/0 +. . . . . user:go/0 ***** looping ***** +. . . . . user:main/0 +. . rules:take/1 +. . . rules:do/1 +. . . . user:go/0 +. . . . . user:go/0 ***** looping ***** +. . . . . user:main/0 + +data:loc/2 used by: +. rules:chase/1 +. . rules:do/1 +. . . user:go/0 +. . . . user:go/0 ***** looping ***** +. . . . user:main/0 +. rules:done/0 +. . user:go/0 +. . . user:go/0 ***** looping ***** +. . . user:main/0 +. rules:ducks/0 +. . rules:demons/0 +. . . user:go/0 +. . . . user:go/0 ***** looping ***** +. . . . user:main/0 +. rules:fox/0 +. . rules:demons/0 +. . . user:go/0 +. . . . user:go/0 ***** looping ***** +. . . . user:main/0 +. rules:goto/1 +. . rules:do/1 +. . . user:go/0 +. . . . user:go/0 ***** looping ***** +. . . . user:main/0 +. rules:look/0 +. . rules:do/1 +. . . user:go/0 +. . . . user:go/0 ***** looping ***** +. . . . user:main/0 +. rules:look_have/1 +. . rules:look/0 +. . . rules:do/1 +. . . . user:go/0 +. . . . . user:go/0 ***** looping ***** +. . . . . user:main/0 +. rules:look_here/1 +. . rules:look/0 +. . . rules:do/1 +. . . . user:go/0 +. . . . . user:go/0 ***** looping ***** +. . . . . user:main/0 +. rules:take/1 +. . rules:do/1 +. . . user:go/0 +. . . . user:go/0 ***** looping ***** +. . . . user:main/0 diff --git a/output_sicstus.txt b/output_sicstus.txt new file mode 100644 index 0000000..3719e66 --- /dev/null +++ b/output_sicstus.txt @@ -0,0 +1,171 @@ + +----- Warnings ----- +Dynamic and static definitions for: data:loc/2 +Unused predicate: user:dw_main/0 + +----- Predicate Use ----- +data:loc/2 +. . no subgoals +. . called from: +. . . . rules:look_here/1 + rules:look_have/1 + rules:look/0 + rules:take/1 + rules:chase/1 + rules:goto/1 + rules:move/2 + rules:fox/0 + rules:ducks/0 + rules:done/0 +data:nextto/2 +. . no subgoals +. . called from: +. . . . rules:connect/2 +rules:chase/1 +. . subgoals: +. . . . data:loc/2 + rules:move/2 + builtin:nl/0 + builtin:write/1 +. . called from: +. . . . rules:do/1 +rules:connect/2 +. . subgoals: +. . . . data:nextto/2 +. . called from: +. . . . rules:look_connect/1 + rules:goto/1 +rules:demons/0 +. . subgoals: +. . . . rules:ducks/0 + rules:fox/0 +. . called from: +. . . . user:go/0 +rules:do/1 +. . subgoals: +. . . . rules:chase/1 + rules:goto/1 + user:instructions/0 + builtin:listing/0 + rules:look/0 + builtin:nl/0 + rules:report/0 + rules:take/1 + builtin:write/1 +. . called from: +. . . . user:go/0 +rules:done/0 +. . subgoals: +. . . . data:loc/2 + builtin:nl/0 + builtin:write/1 +. . called from: +. . . . user:go/0 +rules:ducks/0 +. . subgoals: +. . . . data:loc/2 + rules:move/2 + builtin:nl/0 + builtin:write/1 +. . called from: +. . . . rules:demons/0 +rules:fox/0 +. . subgoals: +. . . . data:loc/2 + builtin:nl/0 + builtin:write/1 +. . called from: +. . . . rules:demons/0 +rules:goto/1 +. . subgoals: +. . . . rules:connect/2 + data:loc/2 + rules:move/2 + builtin:nl/0 + builtin:write/1 +. . called from: +. . . . rules:do/1 +rules:look/0 +. . subgoals: +. . . . data:loc/2 + rules:look_connect/1 + rules:look_have/1 + rules:look_here/1 + builtin:nl/0 + builtin:write/1 +. . called from: +. . . . rules:do/1 +rules:look_connect/1 +. . subgoals: +. . . . rules:connect/2 + builtin:nl/0 + builtin:write/1 +. . called from: +. . . . rules:look/0 +rules:look_have/1 +. . subgoals: +. . . . data:loc/2 + builtin:nl/0 + builtin:write/1 +. . called from: +. . . . rules:look/0 +rules:look_here/1 +. . subgoals: +. . . . builtin: \= /2 + data:loc/2 + builtin:nl/0 + builtin:write/1 +. . called from: +. . . . rules:look/0 +rules:move/2 +. . subgoals: +. . . . data:loc/2 + builtin:assert/1 + builtin:retract/1 +. . called from: +. . . . rules:take/1 + rules:chase/1 + rules:goto/1 + rules:ducks/0 +rules:report/0 +. . subgoals: +. . . . builtin:findall/3 + builtin:nl/0 + builtin:write/1 +. . called from: +. . . . rules:do/1 +rules:take/1 +. . subgoals: +. . . . data:loc/2 + rules:move/2 + builtin:nl/0 + builtin:write/1 +. . called from: +. . . . rules:do/1 +user:dw_main/0 +. . subgoals: +. . . . user:go/0 + user:instructions/0 + builtin:nl/0 + builtin:write/1 +. . no callers +user:go/0 +. . subgoals: +. . . . builtin: \= /2 + rules:demons/0 + rules:do/1 + rules:done/0 + user:go/0 + builtin:nl/0 + builtin:read/1 + builtin:write/1 +. . called from: +. . . . user:go/0 + user:dw_main/0 +user:instructions/0 +. . subgoals: +. . . . builtin:nl/0 + builtin:write/1 +. . called from: +. . . . rules:do/1 + user:dw_main/0 diff --git a/xref.txt b/xref.txt new file mode 100644 index 0000000..43c66a4 --- /dev/null +++ b/xref.txt @@ -0,0 +1,1642 @@ + +----- Warnings ----- +Discontiguous definition of: user:main/0 +Undefined: xread/1 in module xrf called from process/4 +Unused predicate: user:here/1 +Unused predicate: user:main/0 +Unused predicate: xrf:(?)/1 +Unused predicate: xrf:get_xlists/2 +Unused predicate: xrf:used_by2/2 +Unused predicate: xrf:uses2/2 +Unused predicate: xrf:warning/2 + +----- Predicate Use ----- +user:bottoms/1 + subgoals: + builtin:findall/3 + called from: + user:cross_reference/3 +user:bottoms_up/1 + subgoals: + user:bottoms_up/1 + user:cone_above/1 + builtin:nl/0 + builtin:write/1 + called from: + user:bottoms_up/1 + user:cross_reference/3 +user:called_by_report/1 + subgoals: + builtin: \= /2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + user:write_list/2 + xrf:used_by/2 + called from: + user:uses_report/1 +user:cone_above/1 + subgoals: + user:cones_above/3 + builtin:nl/0 + builtin:write/1 + xrf:modified_in/2 + xrf:used_by/2 + called from: + user:bottoms_up/1 +user:cone_below/1 + subgoals: + user:cones_below/3 + builtin:nl/0 + builtin:write/1 + xrf:uses/2 + called from: + user:tops_down/1 +user:cones_above/3 + subgoals: + user:cones_above/3 + builtin:is/2 + builtin:memberchk/2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + xrf:used_by/2 + called from: + user:cone_above/1 + user:cones_above/3 +user:cones_below/3 + subgoals: + user:cones_below/3 + builtin:is/2 + builtin:memberchk/2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + xrf:uses/2 + called from: + user:cone_below/1 + user:cones_below/3 +user:cross_reference/3 + subgoals: + user:bottoms/1 + user:bottoms_up/1 + file_systems:current_directory/2 + user:set_tab/1 + builtin:tell/1 + builtin:told/0 + user:tops/1 + user:tops_down/1 + user:xreport/0 + xrf:xref/1 + called from: + user:main/0 +user:here/1 + no subgoals + no callers +user:io/3 + no subgoals + called from: + user:main/0 +user:main/0 + subgoals: + user:cross_reference/3 + user:io/3 + builtin:nl/0 + builtin:write/1 + no callers +user:modified_report/1 + subgoals: + builtin: \= /2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + user:write_list/2 + xrf:dynamic_pred/1 + xrf:modified_in/2 + called from: + user:uses_report/1 +user:set_tab/1 + subgoals: + builtin:retractall/1 + assert-user:tab_text/1 + called from: + user:cross_reference/3 +user:subgoal_report/1 + subgoals: + builtin: \= /2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + user:write_list/2 + xrf:uses/2 + called from: + user:uses_report/1 +user:tab/1 + subgoals: + builtin:is/2 + user:tab/1 + user:tab_text/1 + builtin:write/1 + called from: + user:called_by_report/1 + user:cones_above/3 + user:cones_below/3 + user:modified_report/1 + user:subgoal_report/1 + user:tab/1 +user:tab_text/1 dynamic + modified in: + user:set_tab/1 + no subgoals + called from: + user:tab/1 +user:tops/1 + subgoals: + builtin:findall/3 + called from: + user:cross_reference/3 +user:tops_down/1 + subgoals: + user:cone_below/1 + builtin:nl/0 + user:tops_down/1 + builtin:write/1 + called from: + user:cross_reference/3 + user:tops_down/1 +user:uses_report/0 + subgoals: + builtin:findall/3 + builtin:nl/0 + builtin:sort/2 + user:uses_report/1 + builtin:write/1 + called from: + user:xreport/0 +user:uses_report/1 + subgoals: + user:called_by_report/1 + user:modified_report/1 + builtin:nl/0 + user:subgoal_report/1 + user:uses_report/1 + builtin:write/1 + xrf:dynamic_pred/1 + called from: + user:uses_report/0 + user:uses_report/1 +user:warning_report/0 + subgoals: + builtin:findall/3 + builtin:nl/0 + builtin:sort/2 + builtin:write/1 + user:write_warnings/1 + called from: + user:xreport/0 +user:write_list/2 + subgoals: + builtin:write/1 + user:write_list/2 + called from: + user:called_by_report/1 + user:modified_report/1 + user:subgoal_report/1 + user:write_list/2 + user:write_warnings/1 +user:write_warnings/1 + subgoals: + builtin:nl/0 + user:write_list/2 + user:write_warnings/1 + called from: + user:warning_report/0 + user:write_warnings/1 +user:xreport/0 + subgoals: + user:uses_report/0 + user:warning_report/0 + called from: + user:cross_reference/3 +xrf:(?)/1 + subgoals: + builtin:nl/0 + builtin:writeq/1 + no callers +xrf:add_discontiguous/2 + subgoals: + xrf:add_discontiguous/2 + assert-xrf:discontig_pred/1 + called from: + xrf:add_discontiguous/2 + xrf:process/4 +xrf:add_dynamic/2 + subgoals: + builtin: = /2 + builtin: == /2 + xrf:add_dynamic/2 + xrf:assert_dynamic/1 + xrf:mod_functor/4 + called from: + xrf:add_dynamic/2 + xrf:add_use/3 + xrf:process/4 +xrf:add_export/2 + subgoals: + xrf:add_export/2 + assert-xrf:export_pred/2 + called from: + xrf:add_export/2 + xrf:process/4 +xrf:add_import/2 + subgoals: + xrf:add_import/2 + assert-xrf:import_mod/2 + assert-xrf:import_pred/2 + called from: + xrf:add_import/2 + xrf:process/4 +xrf:add_use/3 + subgoals: + builtin: = /2 + builtin: =.. /2 + builtin: == /2 + xrf:add_dynamic/2 + xrf:add_use/3 + xrf:insert/3 + xrf:is_assert/2 + builtin:memberchk/2 + xrf:mod_functor/4 + builtin:nonvar/1 + xrf:open_module/1 + builtin:var/1 + called from: + xrf:add_use/3 + xrf:get_uses/2 +xrf:assert_dynamic/1 + subgoals: + xrf:dynamic_pred/1 + assert-xrf:dynamic_pred/1 + called from: + xrf:add_dynamic/2 +xrf:bad_body/2 + subgoals: + xrf:bad_body/2 + called from: + xrf:bad_body/2 + xrf:bad_term/2 +xrf:bad_term/2 + subgoals: + xrf:bad_body/2 + builtin:line_count/2 + builtin:stream_property/2 + assert-xrf:warning/2 + called from: + xrf:xinput/1 +xrf:convert_mfa_list/2 + subgoals: + xrf:convert_mfa_list/2 + xrf:get_pred_loc/4 + called from: + xrf:convert_mfa_list/2 + xrf:convert_used_by/0 + xrf:convert_uses/0 +xrf:convert_used_by/0 + subgoals: + xrf:convert_mfa_list/2 + assert-xrf:used_by2/2 + retract-de_fault:used_by/2 + called from: + xrf:get_xlists/2 +xrf:convert_uses/0 + subgoals: + xrf:convert_mfa_list/2 + assert-xrf:uses2/2 + retract-de_fault:uses/2 + called from: + xrf:get_xlists/2 +xrf:discontig_check/1 + subgoals: + xrf:discontig_pred/1 + xrf:last_clause/1 + xrf:uses_temp/2 + assert-xrf:warning/2 + called from: + xrf:get_uses/1 + xrf:get_uses/2 +xrf:discontig_pred/1 dynamic + modified in: + xrf:add_discontiguous/2 + no subgoals + called from: + xrf:discontig_check/1 +xrf:dynamic_pred/1 dynamic + modified in: + xrf:assert_dynamic/1 + no subgoals + called from: + user:modified_report/1 + user:uses_report/1 + xrf:assert_dynamic/1 + xrf:resolve_dynamics/0 +xrf:export_pred/2 dynamic + modified in: + xrf:add_export/2 + no subgoals + called from: + xrf:visible/1 +xrf:file/2 dynamic + modified in: + xrf:xinput/1 + no subgoals + called from: + xrf:process/4 + xrf:xinput/1 +xrf:find_mod/3 + subgoals: + builtin:current_predicate/1 + builtin:functor/3 + xrf:import_mod/2 + xrf:import_pred/2 + builtin:predicate_property/2 + xrf:uses_temp/2 + xrf:visible/1 + called from: + xrf:resolve_uses/3 +xrf:get_modified_in/0 + subgoals: + builtin:findall/3 + xrf:insert_list/3 + xrf:uses/2 + assert-xrf:modified_in/2 + called from: + xrf:xref/1 +xrf:get_pred_loc/4 + subgoals: + xrf:pred_loc/4 + called from: + xrf:convert_mfa_list/2 +xrf:get_used_by/0 + subgoals: + builtin:findall/3 + xrf:insert_list/3 + xrf:uses/2 + assert-xrf:used_by/2 + called from: + xrf:get_xlists/2 + xrf:xref/1 +xrf:get_uses/1 + subgoals: + xrf:discontig_check/1 + xrf:uses_temp/2 + assert-xrf:uses_temp/2 + called from: + xrf:process/4 +xrf:get_uses/2 + subgoals: + builtin: = /2 + xrf:add_use/3 + xrf:discontig_check/1 + assert-xrf:uses_temp/2 + retract-de_fault:uses_temp/2 + called from: + xrf:process/4 +xrf:get_xlists/2 + subgoals: + xrf:convert_used_by/0 + xrf:convert_uses/0 + builtin:findall/3 + xrf:get_used_by/0 + xrf:resolve_uses/0 + builtin:sort/2 + xrf:warn_undefined/0 + xrf:warn_unused/0 + no callers +xrf:import_mod/2 dynamic + modified in: + xrf:add_import/2 + no subgoals + called from: + xrf:find_mod/3 +xrf:import_pred/2 dynamic + modified in: + xrf:add_import/2 + no subgoals + called from: + xrf:find_mod/3 +xrf:insert/3 + subgoals: + builtin: @< /2 + xrf:insert/3 + called from: + xrf:add_use/3 + xrf:insert/3 + xrf:insert_list/3 +xrf:insert_list/3 + subgoals: + xrf:insert/3 + xrf:insert_list/3 + called from: + xrf:get_modified_in/0 + xrf:get_used_by/0 + xrf:insert_list/3 +xrf:is_assert/2 + no subgoals + called from: + xrf:add_use/3 +xrf:last_clause/1 dynamic + modified in: + xrf:set_last_clause/1 + no subgoals + called from: + xrf:discontig_check/1 +xrf:mod_functor/4 + subgoals: + builtin:functor/3 + called from: + xrf:add_dynamic/2 + xrf:add_use/3 +xrf:modified_in/2 dynamic + modified in: + xrf:get_modified_in/0 + no subgoals + called from: + user:cone_above/1 + user:modified_report/1 +xrf:module_file/2 dynamic + modified in: + xrf:process/4 + no subgoals + called from: + xrf:process/4 +xrf:open_module/1 dynamic + modified in: + xrf:set_open_module/1 + xrf:xinit/0 + no subgoals + called from: + xrf:add_use/3 + xrf:process/4 +xrf:pred_loc/4 dynamic + modified in: + xrf:process/4 + no subgoals + called from: + xrf:get_pred_loc/4 + xrf:process/4 +xrf:process/4 + subgoals: + xrf:add_discontiguous/2 + xrf:add_dynamic/2 + xrf:add_export/2 + xrf:add_import/2 + builtin:expand_term/2 + xrf:file/2 + builtin:functor/3 + xrf:get_uses/1 + xrf:get_uses/2 + xrf:module_file/2 + builtin:op/3 + xrf:open_module/1 + xrf:pred_loc/4 + xrf:process/4 + xrf:set_last_clause/1 + xrf:set_open_module/1 + xrf:xinput/1 + undefined:xread/1 + assert-xrf:module_file/2 + assert-xrf:pred_loc/4 + called from: + xrf:process/4 + xrf:xinput/1 +xrf:resolve_dynamics/0 + subgoals: + xrf:dynamic_pred/1 + xrf:uses_temp/2 + assert-xrf:uses_temp/2 + assert-xrf:warning/2 + called from: + xrf:resolve_uses/0 +xrf:resolve_uses/0 + subgoals: + xrf:resolve_dynamics/0 + xrf:resolve_uses/3 + xrf:uses_temp/2 + assert-xrf:uses/2 + called from: + xrf:get_xlists/2 + xrf:xref/1 +xrf:resolve_uses/3 + subgoals: + xrf:find_mod/3 + xrf:resolve_uses/3 + called from: + xrf:resolve_uses/0 + xrf:resolve_uses/3 +xrf:set_last_clause/1 + subgoals: + assert-xrf:last_clause/1 + retract-de_fault:last_clause/1 + called from: + xrf:process/4 +xrf:set_open_module/1 + subgoals: + assert-xrf:open_module/1 + retract-de_fault:open_module/1 + called from: + xrf:process/4 +xrf:used_by/2 dynamic + modified in: + xrf:get_used_by/0 + no subgoals + called from: + user:called_by_report/1 + user:cone_above/1 + user:cones_above/3 + xrf:warn_unused/0 +xrf:used_by2/2 dynamic + modified in: + xrf:convert_used_by/0 + no subgoals + no callers +xrf:uses/2 dynamic + modified in: + xrf:resolve_uses/0 + no subgoals + called from: + user:cone_below/1 + user:cones_below/3 + user:subgoal_report/1 + xrf:get_modified_in/0 + xrf:get_used_by/0 + xrf:warn_undefined/0 +xrf:uses2/2 dynamic + modified in: + xrf:convert_uses/0 + no subgoals + no callers +xrf:uses_temp/2 dynamic + modified in: + xrf:get_uses/1 + xrf:get_uses/2 + xrf:resolve_dynamics/0 + no subgoals + called from: + xrf:discontig_check/1 + xrf:find_mod/3 + xrf:get_uses/1 + xrf:resolve_dynamics/0 + xrf:resolve_uses/0 + xrf:visible/1 +xrf:visible/1 + subgoals: + builtin:current_predicate/1 + xrf:export_pred/2 + builtin:predicate_property/2 + xrf:uses_temp/2 + called from: + xrf:find_mod/3 +xrf:warn_undef/2 + subgoals: + xrf:warn_undef/2 + assert-xrf:warning/2 + called from: + xrf:warn_undef/2 + xrf:warn_undefined/0 +xrf:warn_undefined/0 + subgoals: + xrf:uses/2 + xrf:warn_undef/2 + called from: + xrf:get_xlists/2 + xrf:xref/1 +xrf:warn_unused/0 + subgoals: + xrf:used_by/2 + assert-xrf:warning/2 + called from: + xrf:get_xlists/2 + xrf:xref/1 +xrf:warning/2 dynamic + modified in: + xrf:bad_term/2 + xrf:discontig_check/1 + xrf:resolve_dynamics/0 + xrf:warn_undef/2 + xrf:warn_unused/0 + no subgoals + no callers +xrf:xinit/0 + subgoals: + builtin:retractall/1 + assert-xrf:open_module/1 + called from: + xrf:xref/1 +xrf:xinput/1 + subgoals: + builtin: == /2 + xrf:bad_term/2 + builtin:close/1 + xrf:file/2 + builtin:line_count/2 + builtin:open/3 + xrf:process/4 + builtin:read/2 + builtin:repeat/0 + xrf:xinput/1 + assert-xrf:file/2 + called from: + xrf:process/4 + xrf:xinput/1 + xrf:xref/1 +xrf:xref/1 + subgoals: + xrf:get_modified_in/0 + xrf:get_used_by/0 + xrf:resolve_uses/0 + xrf:warn_undefined/0 + xrf:warn_unused/0 + xrf:xinit/0 + xrf:xinput/1 + called from: + user:cross_reference/3 + +----- Going Down xrf:get_xlists/2 ---------- + +xrf:get_xlists/2 uses: +. xrf:convert_used_by/0 +. . xrf:convert_mfa_list/2 +. . . xrf:convert_mfa_list/2 ***** looping ***** +. . . xrf:get_pred_loc/4 +. . . . xrf:pred_loc/4 +. . assert-xrf:used_by2/2 +. . retract-de_fault:used_by/2 +. xrf:convert_uses/0 +. . xrf:convert_mfa_list/2 +. . . xrf:convert_mfa_list/2 ***** looping ***** +. . . xrf:get_pred_loc/4 +. . . . xrf:pred_loc/4 +. . assert-xrf:uses2/2 +. . retract-de_fault:uses/2 +. builtin:findall/3 +. xrf:get_used_by/0 +. . builtin:findall/3 +. . xrf:insert_list/3 +. . . xrf:insert/3 +. . . . builtin: @< /2 +. . . . xrf:insert/3 ***** looping ***** +. . . xrf:insert_list/3 ***** looping ***** +. . xrf:uses/2 +. . assert-xrf:used_by/2 +. xrf:resolve_uses/0 +. . xrf:resolve_dynamics/0 +. . . xrf:dynamic_pred/1 +. . . xrf:uses_temp/2 +. . . assert-xrf:uses_temp/2 +. . . assert-xrf:warning/2 +. . xrf:resolve_uses/3 +. . . xrf:find_mod/3 +. . . . builtin:current_predicate/1 +. . . . builtin:functor/3 +. . . . xrf:import_mod/2 +. . . . xrf:import_pred/2 +. . . . builtin:predicate_property/2 +. . . . xrf:uses_temp/2 +. . . . xrf:visible/1 +. . . . . builtin:current_predicate/1 +. . . . . xrf:export_pred/2 +. . . . . builtin:predicate_property/2 +. . . . . xrf:uses_temp/2 +. . . xrf:resolve_uses/3 ***** looping ***** +. . xrf:uses_temp/2 +. . assert-xrf:uses/2 +. builtin:sort/2 +. xrf:warn_undefined/0 +. . xrf:uses/2 +. . xrf:warn_undef/2 +. . . xrf:warn_undef/2 ***** looping ***** +. . . assert-xrf:warning/2 +. xrf:warn_unused/0 +. . xrf:used_by/2 +. . assert-xrf:warning/2 + +----- Going Down xrf:(?)/1 ---------- + +xrf:(?)/1 uses: +. builtin:nl/0 +. builtin:writeq/1 + +----- Going Down user:here/1 ---------- + +user:here/1 uses: + +----- Going Down user:main/0 ---------- + +user:main/0 uses: +. user:cross_reference/3 +. . user:bottoms/1 +. . . builtin:findall/3 +. . user:bottoms_up/1 +. . . user:bottoms_up/1 ***** looping ***** +. . . user:cone_above/1 +. . . . user:cones_above/3 +. . . . . user:cones_above/3 ***** looping ***** +. . . . . builtin:is/2 +. . . . . builtin:memberchk/2 +. . . . . builtin:nl/0 +. . . . . user:tab/1 +. . . . . . builtin:is/2 +. . . . . . user:tab/1 ***** looping ***** +. . . . . . user:tab_text/1 +. . . . . . builtin:write/1 +. . . . . builtin:write/1 +. . . . . xrf:used_by/2 +. . . . builtin:nl/0 +. . . . builtin:write/1 +. . . . xrf:modified_in/2 +. . . . xrf:used_by/2 +. . . builtin:nl/0 +. . . builtin:write/1 +. . file_systems:current_directory/2 +. . user:set_tab/1 +. . . builtin:retractall/1 +. . . assert-user:tab_text/1 +. . builtin:tell/1 +. . builtin:told/0 +. . user:tops/1 +. . . builtin:findall/3 +. . user:tops_down/1 +. . . user:cone_below/1 +. . . . user:cones_below/3 +. . . . . user:cones_below/3 ***** looping ***** +. . . . . builtin:is/2 +. . . . . builtin:memberchk/2 +. . . . . builtin:nl/0 +. . . . . user:tab/1 +. . . . . . builtin:is/2 +. . . . . . user:tab/1 ***** looping ***** +. . . . . . user:tab_text/1 +. . . . . . builtin:write/1 +. . . . . builtin:write/1 +. . . . . xrf:uses/2 +. . . . builtin:nl/0 +. . . . builtin:write/1 +. . . . xrf:uses/2 +. . . builtin:nl/0 +. . . user:tops_down/1 ***** looping ***** +. . . builtin:write/1 +. . user:xreport/0 +. . . user:uses_report/0 +. . . . builtin:findall/3 +. . . . builtin:nl/0 +. . . . builtin:sort/2 +. . . . user:uses_report/1 +. . . . . user:called_by_report/1 +. . . . . . builtin: \= /2 +. . . . . . builtin:nl/0 +. . . . . . user:tab/1 +. . . . . . . builtin:is/2 +. . . . . . . user:tab/1 ***** looping ***** +. . . . . . . user:tab_text/1 +. . . . . . . builtin:write/1 +. . . . . . builtin:write/1 +. . . . . . user:write_list/2 +. . . . . . . builtin:write/1 +. . . . . . . user:write_list/2 ***** looping ***** +. . . . . . xrf:used_by/2 +. . . . . user:modified_report/1 +. . . . . . builtin: \= /2 +. . . . . . builtin:nl/0 +. . . . . . user:tab/1 +. . . . . . . builtin:is/2 +. . . . . . . user:tab/1 ***** looping ***** +. . . . . . . user:tab_text/1 +. . . . . . . builtin:write/1 +. . . . . . builtin:write/1 +. . . . . . user:write_list/2 +. . . . . . . builtin:write/1 +. . . . . . . user:write_list/2 ***** looping ***** +. . . . . . xrf:dynamic_pred/1 +. . . . . . xrf:modified_in/2 +. . . . . builtin:nl/0 +. . . . . user:subgoal_report/1 +. . . . . . builtin: \= /2 +. . . . . . builtin:nl/0 +. . . . . . user:tab/1 +. . . . . . . builtin:is/2 +. . . . . . . user:tab/1 ***** looping ***** +. . . . . . . user:tab_text/1 +. . . . . . . builtin:write/1 +. . . . . . builtin:write/1 +. . . . . . user:write_list/2 +. . . . . . . builtin:write/1 +. . . . . . . user:write_list/2 ***** looping ***** +. . . . . . xrf:uses/2 +. . . . . user:uses_report/1 ***** looping ***** +. . . . . builtin:write/1 +. . . . . xrf:dynamic_pred/1 +. . . . builtin:write/1 +. . . user:warning_report/0 +. . . . builtin:findall/3 +. . . . builtin:nl/0 +. . . . builtin:sort/2 +. . . . builtin:write/1 +. . . . user:write_warnings/1 +. . . . . builtin:nl/0 +. . . . . user:write_list/2 +. . . . . . builtin:write/1 +. . . . . . user:write_list/2 ***** looping ***** +. . . . . user:write_warnings/1 ***** looping ***** +. . xrf:xref/1 +. . . xrf:get_modified_in/0 +. . . . builtin:findall/3 +. . . . xrf:insert_list/3 +. . . . . xrf:insert/3 +. . . . . . builtin: @< /2 +. . . . . . xrf:insert/3 ***** looping ***** +. . . . . xrf:insert_list/3 ***** looping ***** +. . . . xrf:uses/2 +. . . . assert-xrf:modified_in/2 +. . . xrf:get_used_by/0 +. . . . builtin:findall/3 +. . . . xrf:insert_list/3 +. . . . . xrf:insert/3 +. . . . . . builtin: @< /2 +. . . . . . xrf:insert/3 ***** looping ***** +. . . . . xrf:insert_list/3 ***** looping ***** +. . . . xrf:uses/2 +. . . . assert-xrf:used_by/2 +. . . xrf:resolve_uses/0 +. . . . xrf:resolve_dynamics/0 +. . . . . xrf:dynamic_pred/1 +. . . . . xrf:uses_temp/2 +. . . . . assert-xrf:uses_temp/2 +. . . . . assert-xrf:warning/2 +. . . . xrf:resolve_uses/3 +. . . . . xrf:find_mod/3 +. . . . . . builtin:current_predicate/1 +. . . . . . builtin:functor/3 +. . . . . . xrf:import_mod/2 +. . . . . . xrf:import_pred/2 +. . . . . . builtin:predicate_property/2 +. . . . . . xrf:uses_temp/2 +. . . . . . xrf:visible/1 +. . . . . . . builtin:current_predicate/1 +. . . . . . . xrf:export_pred/2 +. . . . . . . builtin:predicate_property/2 +. . . . . . . xrf:uses_temp/2 +. . . . . xrf:resolve_uses/3 ***** looping ***** +. . . . xrf:uses_temp/2 +. . . . assert-xrf:uses/2 +. . . xrf:warn_undefined/0 +. . . . xrf:uses/2 +. . . . xrf:warn_undef/2 +. . . . . xrf:warn_undef/2 ***** looping ***** +. . . . . assert-xrf:warning/2 +. . . xrf:warn_unused/0 +. . . . xrf:used_by/2 +. . . . assert-xrf:warning/2 +. . . xrf:xinit/0 +. . . . builtin:retractall/1 +. . . . assert-xrf:open_module/1 +. . . xrf:xinput/1 +. . . . builtin: == /2 +. . . . xrf:bad_term/2 +. . . . . xrf:bad_body/2 +. . . . . . xrf:bad_body/2 ***** looping ***** +. . . . . builtin:line_count/2 +. . . . . builtin:stream_property/2 +. . . . . assert-xrf:warning/2 +. . . . builtin:close/1 +. . . . xrf:file/2 +. . . . builtin:line_count/2 +. . . . builtin:open/3 +. . . . xrf:process/4 +. . . . . xrf:add_discontiguous/2 +. . . . . . xrf:add_discontiguous/2 ***** looping ***** +. . . . . . assert-xrf:discontig_pred/1 +. . . . . xrf:add_dynamic/2 +. . . . . . builtin: = /2 +. . . . . . builtin: == /2 +. . . . . . xrf:add_dynamic/2 ***** looping ***** +. . . . . . xrf:assert_dynamic/1 +. . . . . . . xrf:dynamic_pred/1 +. . . . . . . assert-xrf:dynamic_pred/1 +. . . . . . xrf:mod_functor/4 +. . . . . . . builtin:functor/3 +. . . . . xrf:add_export/2 +. . . . . . xrf:add_export/2 ***** looping ***** +. . . . . . assert-xrf:export_pred/2 +. . . . . xrf:add_import/2 +. . . . . . xrf:add_import/2 ***** looping ***** +. . . . . . assert-xrf:import_mod/2 +. . . . . . assert-xrf:import_pred/2 +. . . . . builtin:expand_term/2 +. . . . . xrf:file/2 +. . . . . builtin:functor/3 +. . . . . xrf:get_uses/1 +. . . . . . xrf:discontig_check/1 +. . . . . . . xrf:discontig_pred/1 +. . . . . . . xrf:last_clause/1 +. . . . . . . xrf:uses_temp/2 +. . . . . . . assert-xrf:warning/2 +. . . . . . xrf:uses_temp/2 +. . . . . . assert-xrf:uses_temp/2 +. . . . . xrf:get_uses/2 +. . . . . . builtin: = /2 +. . . . . . xrf:add_use/3 +. . . . . . . builtin: = /2 +. . . . . . . builtin: =.. /2 +. . . . . . . builtin: == /2 +. . . . . . . xrf:add_dynamic/2 +. . . . . . . . builtin: = /2 +. . . . . . . . builtin: == /2 +. . . . . . . . xrf:add_dynamic/2 ***** looping ***** +. . . . . . . . xrf:assert_dynamic/1 +. . . . . . . . . xrf:dynamic_pred/1 +. . . . . . . . . assert-xrf:dynamic_pred/1 +. . . . . . . . xrf:mod_functor/4 +. . . . . . . . . builtin:functor/3 +. . . . . . . xrf:add_use/3 ***** looping ***** +. . . . . . . xrf:insert/3 +. . . . . . . . builtin: @< /2 +. . . . . . . . xrf:insert/3 ***** looping ***** +. . . . . . . xrf:is_assert/2 +. . . . . . . builtin:memberchk/2 +. . . . . . . xrf:mod_functor/4 +. . . . . . . . builtin:functor/3 +. . . . . . . builtin:nonvar/1 +. . . . . . . xrf:open_module/1 +. . . . . . . builtin:var/1 +. . . . . . xrf:discontig_check/1 +. . . . . . . xrf:discontig_pred/1 +. . . . . . . xrf:last_clause/1 +. . . . . . . xrf:uses_temp/2 +. . . . . . . assert-xrf:warning/2 +. . . . . . assert-xrf:uses_temp/2 +. . . . . . retract-de_fault:uses_temp/2 +. . . . . xrf:module_file/2 +. . . . . builtin:op/3 +. . . . . xrf:open_module/1 +. . . . . xrf:pred_loc/4 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:set_last_clause/1 +. . . . . . assert-xrf:last_clause/1 +. . . . . . retract-de_fault:last_clause/1 +. . . . . xrf:set_open_module/1 +. . . . . . assert-xrf:open_module/1 +. . . . . . retract-de_fault:open_module/1 +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . undefined:xread/1 +. . . . . assert-xrf:module_file/2 +. . . . . assert-xrf:pred_loc/4 +. . . . builtin:read/2 +. . . . builtin:repeat/0 +. . . . xrf:xinput/1 ***** looping ***** +. . . . assert-xrf:file/2 +. user:io/3 +. builtin:nl/0 +. builtin:write/1 + +----- Going Down xrf:used_by2/2 ---------- + +xrf:used_by2/2 uses: + +----- Going Down xrf:uses2/2 ---------- + +xrf:uses2/2 uses: + +----- Going Down xrf:warning/2 ---------- + +xrf:warning/2 uses: + +----- Coming Up user:tab_text/1 ---------- + +user:tab_text/1 modified in and callers upstream: +. user:set_tab/1 +. . user:cross_reference/3 +. . . user:main/0 + +user:tab_text/1 used by: +. user:tab/1 +. . user:called_by_report/1 +. . . user:uses_report/1 +. . . . user:uses_report/0 +. . . . . user:xreport/0 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 +. . . . user:uses_report/1 ***** looping ***** +. . user:cones_above/3 +. . . user:cone_above/1 +. . . . user:bottoms_up/1 +. . . . . user:bottoms_up/1 ***** looping ***** +. . . . . user:cross_reference/3 +. . . . . . user:main/0 +. . . user:cones_above/3 ***** looping ***** +. . user:cones_below/3 +. . . user:cone_below/1 +. . . . user:tops_down/1 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 +. . . . . user:tops_down/1 ***** looping ***** +. . . user:cones_below/3 ***** looping ***** +. . user:modified_report/1 +. . . user:uses_report/1 +. . . . user:uses_report/0 +. . . . . user:xreport/0 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 +. . . . user:uses_report/1 ***** looping ***** +. . user:subgoal_report/1 +. . . user:uses_report/1 +. . . . user:uses_report/0 +. . . . . user:xreport/0 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 +. . . . user:uses_report/1 ***** looping ***** +. . user:tab/1 ***** looping ***** + +----- Coming Up xrf:used_by2/2 ---------- + +xrf:used_by2/2 modified in and callers upstream: +. xrf:convert_used_by/0 +. . xrf:get_xlists/2 + +xrf:used_by2/2 used by: + +----- Coming Up xrf:uses2/2 ---------- + +xrf:uses2/2 modified in and callers upstream: +. xrf:convert_uses/0 +. . xrf:get_xlists/2 + +xrf:uses2/2 used by: + +----- Coming Up xrf:modified_in/2 ---------- + +xrf:modified_in/2 modified in and callers upstream: +. xrf:get_modified_in/0 +. . xrf:xref/1 +. . . user:cross_reference/3 +. . . . user:main/0 + +xrf:modified_in/2 used by: +. user:cone_above/1 +. . user:bottoms_up/1 +. . . user:bottoms_up/1 ***** looping ***** +. . . user:cross_reference/3 +. . . . user:main/0 +. user:modified_report/1 +. . user:uses_report/1 +. . . user:uses_report/0 +. . . . user:xreport/0 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 +. . . user:uses_report/1 ***** looping ***** + +----- Coming Up xrf:module_file/2 ---------- + +xrf:module_file/2 modified in and callers upstream: +. xrf:process/4 +. . xrf:process/4 ***** looping ***** +. . xrf:xinput/1 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:cross_reference/3 +. . . . . user:main/0 + +xrf:module_file/2 used by: +. xrf:process/4 +. . xrf:process/4 ***** looping ***** +. . xrf:xinput/1 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:cross_reference/3 +. . . . . user:main/0 + +----- Coming Up xrf:pred_loc/4 ---------- + +xrf:pred_loc/4 modified in and callers upstream: +. xrf:process/4 +. . xrf:process/4 ***** looping ***** +. . xrf:xinput/1 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:cross_reference/3 +. . . . . user:main/0 + +xrf:pred_loc/4 used by: +. xrf:get_pred_loc/4 +. . xrf:convert_mfa_list/2 +. . . xrf:convert_mfa_list/2 ***** looping ***** +. . . xrf:convert_used_by/0 +. . . . xrf:get_xlists/2 +. . . xrf:convert_uses/0 +. . . . xrf:get_xlists/2 +. xrf:process/4 +. . xrf:process/4 ***** looping ***** +. . xrf:xinput/1 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:cross_reference/3 +. . . . . user:main/0 + +----- Coming Up xrf:file/2 ---------- + +xrf:file/2 modified in and callers upstream: +. xrf:xinput/1 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . xrf:xinput/1 ***** looping ***** +. . xrf:xref/1 +. . . user:cross_reference/3 +. . . . user:main/0 + +xrf:file/2 used by: +. xrf:process/4 +. . xrf:process/4 ***** looping ***** +. . xrf:xinput/1 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:cross_reference/3 +. . . . . user:main/0 +. xrf:xinput/1 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . xrf:xinput/1 ***** looping ***** +. . xrf:xref/1 +. . . user:cross_reference/3 +. . . . user:main/0 + +----- Coming Up xrf:last_clause/1 ---------- + +xrf:last_clause/1 modified in and callers upstream: +. xrf:set_last_clause/1 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 + +xrf:last_clause/1 used by: +. xrf:discontig_check/1 +. . xrf:get_uses/1 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 +. . xrf:get_uses/2 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 + +----- Coming Up xrf:discontig_pred/1 ---------- + +xrf:discontig_pred/1 modified in and callers upstream: +. xrf:add_discontiguous/2 +. . xrf:add_discontiguous/2 ***** looping ***** +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 + +xrf:discontig_pred/1 used by: +. xrf:discontig_check/1 +. . xrf:get_uses/1 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 +. . xrf:get_uses/2 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 + +----- Coming Up xrf:warning/2 ---------- + +xrf:warning/2 modified in and callers upstream: +. xrf:bad_term/2 +. . xrf:xinput/1 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:cross_reference/3 +. . . . . user:main/0 +. xrf:discontig_check/1 +. . xrf:get_uses/1 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 +. . xrf:get_uses/2 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 +. xrf:resolve_dynamics/0 +. . xrf:resolve_uses/0 +. . . xrf:get_xlists/2 +. . . xrf:xref/1 +. . . . user:cross_reference/3 +. . . . . user:main/0 +. xrf:warn_undef/2 +. . xrf:warn_undef/2 ***** looping ***** +. . xrf:warn_undefined/0 +. . . xrf:get_xlists/2 +. . . xrf:xref/1 +. . . . user:cross_reference/3 +. . . . . user:main/0 +. xrf:warn_unused/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:cross_reference/3 +. . . . user:main/0 + +xrf:warning/2 used by: + +----- Coming Up xrf:open_module/1 ---------- + +xrf:open_module/1 modified in and callers upstream: +. xrf:set_open_module/1 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 +. xrf:xinit/0 +. . xrf:xref/1 +. . . user:cross_reference/3 +. . . . user:main/0 + +xrf:open_module/1 used by: +. xrf:add_use/3 +. . xrf:add_use/3 ***** looping ***** +. . xrf:get_uses/2 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 +. xrf:process/4 +. . xrf:process/4 ***** looping ***** +. . xrf:xinput/1 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 ***** looping ***** +. . . xrf:xref/1 +. . . . user:cross_reference/3 +. . . . . user:main/0 + +----- Coming Up xrf:used_by/2 ---------- + +xrf:used_by/2 modified in and callers upstream: +. xrf:get_used_by/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:cross_reference/3 +. . . . user:main/0 + +xrf:used_by/2 used by: +. user:called_by_report/1 +. . user:uses_report/1 +. . . user:uses_report/0 +. . . . user:xreport/0 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 +. . . user:uses_report/1 ***** looping ***** +. user:cone_above/1 +. . user:bottoms_up/1 +. . . user:bottoms_up/1 ***** looping ***** +. . . user:cross_reference/3 +. . . . user:main/0 +. user:cones_above/3 +. . user:cone_above/1 +. . . user:bottoms_up/1 +. . . . user:bottoms_up/1 ***** looping ***** +. . . . user:cross_reference/3 +. . . . . user:main/0 +. . user:cones_above/3 ***** looping ***** +. xrf:warn_unused/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:cross_reference/3 +. . . . user:main/0 + +----- Coming Up xrf:dynamic_pred/1 ---------- + +xrf:dynamic_pred/1 modified in and callers upstream: +. xrf:assert_dynamic/1 +. . xrf:add_dynamic/2 +. . . xrf:add_dynamic/2 ***** looping ***** +. . . xrf:add_use/3 +. . . . xrf:add_use/3 ***** looping ***** +. . . . xrf:get_uses/2 +. . . . . xrf:process/4 +. . . . . . xrf:process/4 ***** looping ***** +. . . . . . xrf:xinput/1 +. . . . . . . xrf:process/4 ***** looping ***** +. . . . . . . xrf:xinput/1 ***** looping ***** +. . . . . . . xrf:xref/1 +. . . . . . . . user:cross_reference/3 +. . . . . . . . . user:main/0 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 + +xrf:dynamic_pred/1 used by: +. user:modified_report/1 +. . user:uses_report/1 +. . . user:uses_report/0 +. . . . user:xreport/0 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 +. . . user:uses_report/1 ***** looping ***** +. user:uses_report/1 +. . user:uses_report/0 +. . . user:xreport/0 +. . . . user:cross_reference/3 +. . . . . user:main/0 +. . user:uses_report/1 ***** looping ***** +. xrf:assert_dynamic/1 +. . xrf:add_dynamic/2 +. . . xrf:add_dynamic/2 ***** looping ***** +. . . xrf:add_use/3 +. . . . xrf:add_use/3 ***** looping ***** +. . . . xrf:get_uses/2 +. . . . . xrf:process/4 +. . . . . . xrf:process/4 ***** looping ***** +. . . . . . xrf:xinput/1 +. . . . . . . xrf:process/4 ***** looping ***** +. . . . . . . xrf:xinput/1 ***** looping ***** +. . . . . . . xrf:xref/1 +. . . . . . . . user:cross_reference/3 +. . . . . . . . . user:main/0 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 +. xrf:resolve_dynamics/0 +. . xrf:resolve_uses/0 +. . . xrf:get_xlists/2 +. . . xrf:xref/1 +. . . . user:cross_reference/3 +. . . . . user:main/0 + +----- Coming Up xrf:export_pred/2 ---------- + +xrf:export_pred/2 modified in and callers upstream: +. xrf:add_export/2 +. . xrf:add_export/2 ***** looping ***** +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 + +xrf:export_pred/2 used by: +. xrf:visible/1 +. . xrf:find_mod/3 +. . . xrf:resolve_uses/3 +. . . . xrf:resolve_uses/0 +. . . . . xrf:get_xlists/2 +. . . . . xrf:xref/1 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 +. . . . xrf:resolve_uses/3 ***** looping ***** + +----- Coming Up xrf:import_pred/2 ---------- + +xrf:import_pred/2 modified in and callers upstream: +. xrf:add_import/2 +. . xrf:add_import/2 ***** looping ***** +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 + +xrf:import_pred/2 used by: +. xrf:find_mod/3 +. . xrf:resolve_uses/3 +. . . xrf:resolve_uses/0 +. . . . xrf:get_xlists/2 +. . . . xrf:xref/1 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 +. . . xrf:resolve_uses/3 ***** looping ***** + +----- Coming Up xrf:import_mod/2 ---------- + +xrf:import_mod/2 modified in and callers upstream: +. xrf:add_import/2 +. . xrf:add_import/2 ***** looping ***** +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 + +xrf:import_mod/2 used by: +. xrf:find_mod/3 +. . xrf:resolve_uses/3 +. . . xrf:resolve_uses/0 +. . . . xrf:get_xlists/2 +. . . . xrf:xref/1 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 +. . . xrf:resolve_uses/3 ***** looping ***** + +----- Coming Up xrf:uses/2 ---------- + +xrf:uses/2 modified in and callers upstream: +. xrf:resolve_uses/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:cross_reference/3 +. . . . user:main/0 + +xrf:uses/2 used by: +. user:cone_below/1 +. . user:tops_down/1 +. . . user:cross_reference/3 +. . . . user:main/0 +. . . user:tops_down/1 ***** looping ***** +. user:cones_below/3 +. . user:cone_below/1 +. . . user:tops_down/1 +. . . . user:cross_reference/3 +. . . . . user:main/0 +. . . . user:tops_down/1 ***** looping ***** +. . user:cones_below/3 ***** looping ***** +. user:subgoal_report/1 +. . user:uses_report/1 +. . . user:uses_report/0 +. . . . user:xreport/0 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 +. . . user:uses_report/1 ***** looping ***** +. xrf:get_modified_in/0 +. . xrf:xref/1 +. . . user:cross_reference/3 +. . . . user:main/0 +. xrf:get_used_by/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:cross_reference/3 +. . . . user:main/0 +. xrf:warn_undefined/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:cross_reference/3 +. . . . user:main/0 + +----- Coming Up xrf:uses_temp/2 ---------- + +xrf:uses_temp/2 modified in and callers upstream: +. xrf:get_uses/1 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 +. xrf:get_uses/2 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 +. xrf:resolve_dynamics/0 +. . xrf:resolve_uses/0 +. . . xrf:get_xlists/2 +. . . xrf:xref/1 +. . . . user:cross_reference/3 +. . . . . user:main/0 + +xrf:uses_temp/2 used by: +. xrf:discontig_check/1 +. . xrf:get_uses/1 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 +. . xrf:get_uses/2 +. . . xrf:process/4 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 +. . . . . xrf:process/4 ***** looping ***** +. . . . . xrf:xinput/1 ***** looping ***** +. . . . . xrf:xref/1 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 +. xrf:find_mod/3 +. . xrf:resolve_uses/3 +. . . xrf:resolve_uses/0 +. . . . xrf:get_xlists/2 +. . . . xrf:xref/1 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 +. . . xrf:resolve_uses/3 ***** looping ***** +. xrf:get_uses/1 +. . xrf:process/4 +. . . xrf:process/4 ***** looping ***** +. . . xrf:xinput/1 +. . . . xrf:process/4 ***** looping ***** +. . . . xrf:xinput/1 ***** looping ***** +. . . . xrf:xref/1 +. . . . . user:cross_reference/3 +. . . . . . user:main/0 +. xrf:resolve_dynamics/0 +. . xrf:resolve_uses/0 +. . . xrf:get_xlists/2 +. . . xrf:xref/1 +. . . . user:cross_reference/3 +. . . . . user:main/0 +. xrf:resolve_uses/0 +. . xrf:get_xlists/2 +. . xrf:xref/1 +. . . user:cross_reference/3 +. . . . user:main/0 +. xrf:visible/1 +. . xrf:find_mod/3 +. . . xrf:resolve_uses/3 +. . . . xrf:resolve_uses/0 +. . . . . xrf:get_xlists/2 +. . . . . xrf:xref/1 +. . . . . . user:cross_reference/3 +. . . . . . . user:main/0 +. . . . xrf:resolve_uses/3 ***** looping ***** diff --git a/axrf.pro b/xrfSicstus.pro similarity index 58% rename from axrf.pro rename to xrfSicstus.pro index 662f876..04b9e21 100755 --- a/axrf.pro +++ b/xrfSicstus.pro @@ -80,86 +80,187 @@ % To allow running from command line compiled code % version. +:- op(900, fy, ?). + +% SICStus modules +:- module(xrf, [ + xref/1, + '?'/1]). + +:- meta_predicate ?(:). + +:- use_module(library(file_systems)). +:- use_module(library(lists)). + +:- dynamic + uses_temp/2, + uses/2, + import_mod/2, + import_pred/2, + export_pred/2, + dynamic_pred/1, + used_by/2, + open_module/1, + warning/2, + discontig_pred/1, + last_clause/1, + file/3, + pred_loc/4, + error/3. - - -:- module(axrf). -:- export([xref/1, xref/2, xref/3]). xref(FILES) :- xinit, - xread(FILES), - xreport. - -xref(FILES, OUTPUT) :- - xinit, - xread(FILES), - tell(OUTPUT), - xreport, - told. - -xref(FILES, WARNINGS, USES) :- - xinit, - xread(FILES), - get_xlists(WARNINGS, USES). + xinput(FILES), + resolve_uses, + locate_dynamics, + get_used_by, + get_modified_in, + warn_unused, + warn_undefined. xinit :- - abolish(uses_temp/2), - abolish(uses/2), - abolish(import_mod/2), - abolish(import_pred/2), - abolish(export_pred/2), - abolish(dynamic_pred/1), - abolish(used_by/2), - abolish(open_module/1), - abolish(warning/1), - abolish(discontig_pred/1), - abolish(last_clause/1), - abolish(file/2), - abolish(pred_loc/4), - assert(open_module(user)). + retractall(uses_temp(_,_)), + retractall(uses(_,_)), + retractall(import_mod(_,_)), + retractall(import_pred(_,_)), + retractall(export_pred(_,_)), + retractall(dynamic_pred(_)), + retractall(used_by(_,_)), + retractall(open_module(_)), + retractall(warning(_,_)), + retractall(discontig_pred(_)), + retractall(last_clause(_)), + retractall(file(_,_,_)), + retractall(pred_loc(_,_,_,_)), + retractall(error(_,_,_)), + assert(open_module(user)), + assert(file(unknown, unknown, unknown)), + assert(current_file(top)). %----------------------------------- % Read the files % -xread([]). -xread([FILE|FILES]) :- - file(FILE, _), - !, - xread(FILES). -xread([FILE|FILES]) :- - xread(FILE), +xinput([]) :- !. +xinput([FILE|FILES]) :- + set_current_file(_, top), + xinput(FILE, _), !, - xread(FILES). -xread(FILE) :- - fopen(H, FILE, r), - asserta(file(FILE, H)), + xinput(FILES). + +xinput(FIL, FULLPATH) :- + add_extension(FIL, FILE), + path_dir(FILE, FULLPATH, NAME, DIR), + current_file(CF), + assert(file_loads(CF, FULLPATH)), + xread(FULLPATH, NAME, DIR). + +xread(FULLPATH, NAME, DIR) :- + file(FULLPATH, NAME, DIR), + !. +xread(FULLPATH, NAME, DIR) :- + open_module(MSTART), + set_current_file(OLDFILE, FULLPATH), + write('reading file: '), write('NAME'), write(' '), write(DIR), + open(FULLPATH, read, H), + current_directory(DSTART, DIR), + asserta(file(FULLPATH, NAME, DIR)), + repeat, - stream_property(H, line_number(LINE)), - read(H,X), - stream_property(H, line_number(LINE2)), + line_count(H, LINE), + catch( read(H,X), ERR, ( assert(error(FULLPATH, LINE, ERR)), fail ) ), + line_count(H, LINE2), +% write(X),nl, (bad_term(H, X) -> true ; - process(FILE, LINE, LINE2, X) ), + process(FULLPATH, LINE, LINE2, X) ), X == end_of_file, !, - fclose(H). + close(H), + + current_directory(_, DSTART), + set_open_module(MSTART), + set_current_file(_, OLDFILE), + write('done with file: '), write(FILE), nl. + + +set_current_file(OLD, NEW) :- + retract(current_file(OLD)), + assert(current_file(NEW)). + +path_dir(FILE, FULLPATH, NAME, DIR) :- + absolute_file_name(FILE, FULLPATH), + atom_chars(FULLPATH, FULLCODES), + reverse(FULLCODES, BACKWARDSCODES), + extract_dir(BACKWARDSCODES, BACKWARDSNAME, BACKWARDSDIR), + reverse(BACKWARDSDIR, DIRCODES), + atom_chars(DIR, DIRCODES), + reverse(BACKWARDSNAME, NAMECODES), + atom_chars(NAME, NAMECODES), + !. + +extract_dir(['/'|Dir], [], ['/'|Dir]) :- !. +extract_dir([X|Xs], [X|Ys], Dir) :- + !, extract_dir(Xs, Ys, Dir). + +add_extension(FIL, FILE) :- + atom_chars(FIL, FILCODES), + reverse(FILCODES, RFILCODES), + add_ext(RFILCODES, RFILECODES), + reverse(RFILECODES, FILECODES), + atom_chars(FILE, FILECODES), + !. + +add_ext([A,B,C,'.'|Xs], [A,B,C,'.'|Xs]). +add_ext([A,B,'.'|Xs], [A,B,'.'|Xs]). +add_ext(Xs, [o,r,p,'.'|Xs]). process(FILE, LINE, LINE2, end_of_file ) :- !. +process(FILE, LINE, LINE2, '--->'(H, B) ) :- + !, + functor(H, F, A), + open_module(M), + (pred_loc(M:F/A, _, _, _) -> + true + ; + assertz(pred_loc(M:F/A, FILE, LINE, LINE2)) + ), + get_uses(M:F/A, B), + set_last_clause(M:F/A). + process(FILE, LINE, LINE2, (A --> B) ) :- expand_term( (A-->B), AB ), !, process(FILE, LINE, LINE2, AB). process(FILE, LINE, LINE2, (:- module(M)) ) :- - !, set_open_module(M). -process(FILE, LINE, LINE2, (:- body(M)) ) :- - !, set_open_module(M). -process(FILE, LINE, LINE2, (:- end_module(_)) ) :- - !, set_open_module(user). -process(FILE, LINE, LINE2, (:- end_body(_)) ) :- - !, set_open_module(user). + !, set_open_module(M), + assert(module_file(M, FILE)). +process(FILE, LINE, LINE2, (:- module(M, IM)) ) :- + !, + set_open_module(M), + assert(module_file(M, FILE)), + add_export(M, IM). +%process(FILE, LINE, LINE2, (:- body(M)) ) :- +% !, set_open_module(M). +%process(FILE, LINE, LINE2, (:- end_module(_)) ) :- +% !, set_open_module(user). +%process(FILE, LINE, LINE2, (:- end_body(_)) ) :- +% !, set_open_module(user). + +process(FILE, LINE, LINE2, (:- use_module(library(IM))) ) :- + !, + open_module(M), + add_import(M, library(IM)). +process(FILE, LINE, LINE2, (:- use_module(project(P))) ) :- + !. +process(FILE, LINE, LINE2, (:- use_module(MF)) ) :- + !, + open_module(M), + xinput(MF, FULLPATH), + module_file(IM, FULLPATH), + add_import(M, IM). process(FILE, LINE, LINE2, (:- import(IM)) ) :- !, open_module(M), @@ -172,6 +273,8 @@ process(FILE, LINE, LINE2, (:- dynamic(D)) ) :- !, open_module(M), add_dynamic(M, D). +process(FILE, LINE, LINE2, (:- volatile(_)) ) :- + !. process(FILE, LINE, LINE2, (:- discontiguous(D)) ) :- !, open_module(M), @@ -185,8 +288,9 @@ process(FILE, LINE, LINE2, (:- op(P, A, O)) ) :- call(op(P, A, O)). process(FILE, LINE, LINE2, (:- include(F)) ) :- !, - (file(F, _) -> true - ; xread(F) ). + xinput(F, _). +process(FILE, LINE, LINE2, (:- meta_predicate(_)) ) :- + !. process(FILE, LINE, LINE2, (H :- B) ) :- !, functor(H, F, A), @@ -211,28 +315,34 @@ process(FILE, LINE, LINE2, H ) :- set_last_clause(M:F/A). bad_term(H, (A,B) ) :- - stream_property(H, line_number(N)), +% stream_property(H, line_number(N)), + line_count(H, N), stream_property(H, file_name(FILE)), assert(warning(error, ['File: ', FILE, ' Line: ', N, 'Probable missplaced period before: ', (A,B)])). bad_term(H, (A;B) ) :- - stream_property(H, line_number(N)), +% stream_property(H, line_number(N)), + line_count(H, N), stream_property(H, file_name(FILE)), assert(warning(error, ['File: ', FILE, ' Line: ', N, 'Probable missplaced period before: ', (A;B)])). bad_term(H, ((A,B) :- _) ) :- - stream_property(H, line_number(N)), +% stream_property(H, line_number(N)), + line_count(H, N), stream_property(H, file_name(FILE)), assert(warning(error, ['File: ', FILE, ' Line: ', N, 'Probable missplaced period before: ', (A,B)])). bad_term(H, ((A;B) :- _) ) :- - stream_property(H, line_number(N)), +% stream_property(H, line_number(N)), + line_count(H, N), stream_property(H, file_name(FILE)), assert(warning(error, ['File: ', FILE, ' Line: ', N, 'Probable missplaced period before: ', (A;B)])). bad_term(H, ((A:-B) :- _) ) :- - stream_property(H, line_number(N)), +% stream_property(H, line_number(N)), + line_count(H, N), stream_property(H, file_name(FILE)), assert(warning(error, ['File: ', FILE, ' Line: ', N, 'Probable missplaced period around: ', (A:-B)])). bad_term(H, (A:-B) ) :- bad_body(B, BADB), - stream_property(H, line_number(N)), +% stream_property(H, line_number(N)), + line_count(H, N), stream_property(H, file_name(FILE)), assert(warning(error, ['File: ', FILE, ' Line: ', N, 'Probable missing period before: ', BADB])). @@ -270,16 +380,23 @@ add_export(M, F/A) :- !, asserta(export_pred(M, F/A)). -add_dynamic(_, []) :- !. +add_dynamic(_, [], _, _, _) :- !. add_dynamic(M, [P|Z]) :- add_dynamic(M, P), !, add_dynamic(M, Z). +% note - SICStus stores the dynamic list as (a,b,c..) not [a,b,c...] +add_dynamic(M, (A,B)) :- + !, + add_dynamic(M, A), + add_dynamic(M, B). + add_dynamic(M, F/A) :- !, assert_dynamic(M:F/A). add_dynamic(M, X) :- mod_functor(X, MM, F, A), - (MM == de$fault -> M3 = M; M3 = MM), + (MM == de_fault -> M3 = M; M3 = MM), + !, assert_dynamic(M3:F/A). assert_dynamic(M:F/A) :- @@ -288,6 +405,15 @@ assert_dynamic(M:F/A) :- assert_dynamic(M:F/A) :- asserta(dynamic_pred(M:F/A)). +locate_dynamics :- + dynamic_pred(M:F/A), + (module_file(M, FILE) -> + assert(pred_loc(M:F/A, FILE, 0, 0)) + ; + assert(pred_loc(M:F/A, unknown, 0, 0)) ), + fail. +locate_dynamics. + add_discontiguous(_, []) :- !. add_discontiguous(M, [P|Z]) :- add_discontiguous(M, P), @@ -328,11 +454,12 @@ discontig_check(MFA) :- discontig_check(MFA) :- last_clause(MFA), !. -discontig_check(MFA) :- - uses_temp(MFA,_), +discontig_check(M:F/A) :- + uses_temp(M:F/A,_), !, + module_file(M, FILE), asserta(warning(error, - ['Discontiguous definition of: ', MFA] + ['Discontiguous definition of: ', M:F/A, ' in ', FILE ] )). discontig_check(_). @@ -341,6 +468,9 @@ set_last_clause(MFA) :- !, assert(last_clause(MFA)). +%add_use(X, L, L) :- +% write(add_use(X)), nl, +% fail. add_use(X, L, L) :- var(X), !. add_use( (G,Gs), L, L3 ) :- @@ -350,53 +480,73 @@ add_use( (G;Gs), L, L3 ) :- add_use(G, L, L2), !, add_use(Gs, L2, L3). add_use( (G->Gs), L, L3 ) :- - add_use(G, L, L2), + (ok_goal(G) -> add_use(G, L, L2); L = L2), !, add_use(Gs, L2, L3). add_use( not(G), L, L2 ) :- + ok_goal(G), !, add_use(G, L, L2). add_use( call(G), L, L2 ) :- + ok_goal(G), !, add_use(G, L, L2). add_use( once(G), L, L2 ) :- + ok_goal(G), !, add_use(G, L, L2). add_use( catch(G,_,R), L, L3) :- add_use(G, L, L2), add_use(R, L2, L3), !. +add_use( MAPLIST, L, L2) :- + MAPLIST =.. [maplist, GG | ARGS], + nonvar(GG), + length(ARGS, NARGS), + functor(GG, F, A), + A2 is A + NARGS, + functor(G, F, A2), + !, add_use(G, L, L2). add_use( ASSERT, L, L3 ) :- is_assert(ASSERT, G), + ok_goal(G), !, - (nonvar(G) -> - mod_functor(G, MG, FG, AG), - (MG == de$fault -> open_module(MMG); MMG = MG), - add_dynamic(MMG, G), - insert(MMG:FG/AG, L, L2) - ; - L2 = L ), - mod_functor(ASSERT, M, F, A), - insert(M:F/A, L2, L3), - !. -add_use(retract(G), L, L3) :- - (nonvar(G) -> - mod_functor(G, MG, FG, AG), - insert(MG:FG/AG, L, L2) - ; - L2 = L ), - mod_functor(retract(G), M, F, A), - insert(M:F/A, L2, L3), - !. + mod_functor(G, MG, FG, AG), + (MG == de_fault -> open_module(MMG); MMG = MG), + add_dynamic(MMG, G), + insert(assert-MMG:FG/AG, L, L3). +add_use(RETRACT, L, L3) :- + is_retract(RETRACT, G), + ok_goal(G), + !, + mod_functor(G, MG, FG, AG), + (MG == de_fault -> open_module(MMG); MMG = MG), + add_dynamic(MMG, G), + insert(retract-MMG:FG/AG, L, L3). add_use( IG, L, L ) :- - is_member(IG, [!, true, fail]), + memberchk(IG, [!, true, fail]), !. add_use( !, L, L ) :- !. add_use( G, L, L2 ) :- + ok_goal(G), mod_functor(G, M, F, A), insert(M:F/A, L, L2). + +ok_goal(G) :- var(G), !, fail. +ok_goal(A:B) :- (var(A);var(B)), !, fail. +ok_goal(G) :- + catch( functor(G, _, _), X, bad_goal(X,G) ). + + +bad_goal(X,G) :- + write('*** Bad Goal: '), nl, + write(X), nl, + writeq(G), nl, abort. is_assert(assert(G), G). is_assert(asserta(G), G). is_assert(assertz(G), G). +is_retract(retract(G), G). +is_retract(reatractall(G), G). + %------------------------------------ % Resolve modules for used goals % @@ -412,15 +562,16 @@ resolve_uses. resolve_dynamics :- dynamic_pred(M:F/A), (uses_temp(M:F/A, _) -> + module_file(M, FILE), assert(warning(warning, - ['Dynamic and static definitions for: ', M:F/A])) + ['Dynamic and static definitions for: ', M:F/A, ' in ', FILE])) ; asserta(uses_temp(M:F/A, [])) ), fail. resolve_dynamics. resolve_uses([], _, []). -resolve_uses([de$fault:F/A|Z1], M, [M2:F/A|Z2]) :- +resolve_uses([de_fault:F/A|Z1], M, [M2:F/A|Z2]) :- find_mod(F/A, M, M2), !, resolve_uses(Z1, M, Z2). @@ -431,8 +582,9 @@ find_mod(F/A, M, M) :- uses_temp(M:F/A,_), !. find_mod(F/A, _, builtin) :- - current_predicate(amzi_system:F/A), - !. +% current_predicate(amzi_system:F/A), + functor(T, F, A), + predicate_property(T, built_in). find_mod(F/A, _, extended) :- current_predicate(user:F/A), predicate_property(user:F/A, extended), @@ -445,6 +597,10 @@ find_mod(F/A, M, M2) :- import_pred(M, M2:F/A), visible(M2:F/A), !. +find_mod(F/A, M, M2) :- + functor(T, F, A), + predicate_property(T, imported_from(M2)), + !. find_mod(F/A, M, user) :- uses_temp(user:F/A, _), !. @@ -465,13 +621,23 @@ visible(M:F/A) :- get_used_by :- uses(M:F/A, _), findall(Mx:Fx/Ax, - (uses(Mx:Fx/Ax,L), is_member(M:F/A,L)), + (uses(Mx:Fx/Ax,L), memberchk(M:F/A,L)), LL), insert_list(LL, [], LLL), - asserta(used_by(M:F/A, LL)), + asserta(used_by(M:F/A, LLL)), fail. get_used_by. - + +get_modified_in :- + uses(M:F/A, _), + findall(Mx:Fx/Ax, + (uses(Mx:Fx/Ax,L), (memberchk(assert-M:F/A,L);memberchk(retract-M:F/A,L))), + LL), + insert_list(LL, [], LLL), + asserta(modified_in(M:F/A, LLL)), + fail. +get_modified_in. + %------------------------------------ % Analyze and Report @@ -514,61 +680,14 @@ convert_mfa_list([M:F/A | T], [loc(M:F/A, FILE, LINE, LINE2) | T2]) :- !, convert_mfa_list(T, T2). -xreport :- - resolve_uses, - get_used_by, - warn_unused, - warn_undefined, - warning_report, - uses_report. - -uses_report :- - nl, write('----- Predicate Use -----'), nl, - findall(M:F/A, uses(M:F/A,_), L), - sort(L, SL), - uses_report(SL). - - uses_report([]). - uses_report([M:F/A|Z]) :- - write(M:F/A), nl, - uses(M:F/A, L), - tab(2), - (L \= [] -> - write('subgoals:'), - nl, tab(4), - write_list(L, '\n ') - ; - write('no subgoals') ), - nl, - used_by(M:F/A, L2), - tab(2), - (L2 \= [] -> - write('called from: '), - nl, tab(4), - write_list(L2, '\n ') - ; - write('no callers') ), - nl, - uses_report(Z). - -warning_report :- - nl, write('----- Warnings -----'), nl, - findall(W, warning(_, W), Ws), - sort(Ws, SWs), - write_warnings(SWs). - -write_warnings([]). -write_warnings([W|Ws]) :- - write_list(W, ''), nl, - write_warnings(Ws). - %----------------------------------- % Generate warnings % warn_unused :- - used_by(MFA, []), - asserta(warning(info, ['Unused predicate: ', MFA])), + used_by(M:F/A, []), + module_file(M, FILE), + asserta(warning(info, ['Unused predicate: ', M:F/A, ' in ', FILE])), fail. warn_unused. @@ -578,14 +697,15 @@ warn_undefined :- fail. warn_undefined. - warn_undef([],_) :- !. - warn_undef([undefined:F1/A1|Z], M:F/A) :- +warn_undef([],_) :- !. +warn_undef([undefined:F1/A1|Z], M:F/A) :- + module_file(M, FILE), asserta(warning(warning, - ['Undefined: ', F1/A1, ' in module ', M, ' called from ', F/A] + ['Undefined: ', F1/A1, ' in module ', M, ' called from ', F/A, ' in ', FILE] )), !, warn_undef(Z, M:F/A). - warn_undef([_|Z], MFA) :- +warn_undef([_|Z], MFA) :- warn_undef(Z, MFA). @@ -602,7 +722,7 @@ set_open_module(X) :- mod_functor(M:X, M, F, A) :- !, functor(X, F, A). -mod_functor(X, de$fault, F, A) :- +mod_functor(X, de_fault, F, A) :- functor(X, F, A). insert_list([], L, L). @@ -620,12 +740,10 @@ insert(A, [B|Z], [A,B|Z]) :- insert(B, [A|Y], [A|Z]) :- insert(B,Y,Z). -write_list([], _). -write_list([X], _) :- - !, write(X). -write_list([X|Y], Separator) :- - write(X), - write(Separator), - write_list(Y, Separator). +? X :- + (nl, writeq('CALL':X), nl ; nl, writeq('FAIL':X), nl, fail), + call(X), + (nl, writeq('EXIT':X), nl ; nl, writeq('REDO':X), nl, fail). + -:- end_module(axrf). \ No newline at end of file +% :- end_module(axrf). \ No newline at end of file diff --git a/xrfSicstusMain.pro b/xrfSicstusMain.pro new file mode 100644 index 0000000..c21ca61 --- /dev/null +++ b/xrfSicstusMain.pro @@ -0,0 +1,254 @@ +% axrf_main.pro + +:- use_module('xrfSicstus.pro'). +:- use_module(library(file_systems)). + +:- dynamic tab_text/1. + +here('/Users/dmerritt/dev/solstice/XRef/'). + +io(xrf, + '/Users/dmerritt/dev/solstice/XRef/', + ['xrfSicstusMain.pro'], + 'xrf_XRef.txt'). +io(duckworld, + '/Users/dmerritt/dev/solstice/XRef/', + ['dwMain.pro'], + 'xrf_DuckWorld.txt'). +io(sessionManager, + '/Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/', + ['sessionManager.pro'], + '/Users/dmerritt/dev/solstice/XRef/xrf_SessionManager.txt'). + +main :- + io(sessionManager, DIR, FILES, OUT), + cross_reference(DIR, FILES, OUT). + +cross_reference(DIR, FILES, OUT) :- + current_directory(_, DIR), + xrf:xref(FILES), + tell(OUT), + error_report, + set_tab('> '), + filereport, + set_tab(' '), + xreport, + write('*** done with xreport ***'), nl, + set_tab('> '), + tops(TOPS), + tops_down(TOPS), + set_tab('< '), + bottoms(BOTTOMS), + bottoms_up(BOTTOMS), + told, + true. + +error_report :- + xrf:error(FILE, LINE, ERROR), + write('*** ERROR *** '), write(FILE:LINE), nl, + write(ERROR), nl, nl, + fail. +error_report. + +filereport :- + write('--------- Files that load other files ----------'), nl, + filereport(top, 0, []). + +filereport(F, I, Used) :- + (memberchk(F, Used) -> tab(I), write(F), write('*** circular ***'), nl, fail; true), + tab(I), + write(F), nl, + xrf:file_loads(F, F2), + II is I + 1, + filereport(F2, II, [F|Used]), + fail. +filereport(_, _, _). + + +xreport :- + warning_report, + uses_report. + +uses_report :- + nl, write('----- Predicate Use -----'), nl, + findall(MFA, xrf:uses(MFA,_), L), + sort(L, SL), + uses_report(SL, bogus_file_qz). + +uses_report([], _). +uses_report([M:F/A|Z], LASTFILE) :- + (xrf:module_file(M, FILE) -> true; FILE = user), + (FILE \= LASTFILE -> nl, write(FILE), nl; true), + nl, write(M:F/A), + (xrf:dynamic_pred(M:F/A) -> write(' '), write(dynamic); true), + (xrf:pred_loc(M:F/A, FILE, LINE, LINE2) -> + xrf:file(FILE, NAME, _), + write(' '), write(NAME:LINE:LINE2) + ; + true), + nl, + modified_report(M:F/A), + subgoal_report(M:F/A), + called_by_report(M:F/A), + !, uses_report(Z, FILE). +uses_report([M:F/A|Z], LASTFILE) :- + write('****** uses_report ERROR ******'), nl, + write(M:F/A), nl, + !, uses_report(Z, LASTFILE). + +modified_report(M:F/A) :- + xrf:dynamic_pred(M:F/A), + !, + xrf:modified_in(M:F/A, L1), + tab(1), + (L1 \= [] -> + write('modified in:'), + nl, tab(2), + write_list(L1, (nl, tab(2))) + ; + write('not modified' ) ), + nl. +modified_report(_). + +subgoal_report(M:F/A) :- + xrf:uses(M:F/A, L), + tab(1), + (L \= [] -> + write('subgoals:'), + nl, tab(2), + write_list(L, (nl, tab(2))) + ; + write('no subgoals') ), + nl. + +called_by_report(M:F/A) :- + xrf:used_by(M:F/A, L2), + tab(1), + (L2 \= [] -> + write('called from: '), + nl, tab(2), + write_list(L2, (nl, tab(2))) + ; + write('no callers') ), + nl. + +tab(0) :- !. +tab(N) :- + tab_text(T), + write(T), + NN is N - 1, + tab(NN). + +set_tab(T) :- + retractall(tab_text(_)), + assert(tab_text(T)). + +tops(TOPS) :- + findall(M:F/A, xrf:used_by(M:F/A, []), TOPS). + +bottoms(BOTTOMS) :- + findall(M:F/A, xrf:dynamic_pred(M:F/A), BOTTOMS). + +tops_down([]). +tops_down([M:F/A | MFAs]) :- + nl, + write('----- Going Down '), + write(M:F/A), + write(' ----------'), + nl, + xrf:pred_loc(M:F/A, FILE, LINE, LINE2), + xrf:file(FILE, NAME, DIR), + write(FILE), nl, + write(NAME), write(' '), write(LINE:LINE2), nl, + cone_below(M:F/A), + !, tops_down(MFAs). + +bottoms_up([]). +bottoms_up([M:F/A | MFAs]) :- + nl, + write('----- Coming Up '), + write(M:F/A), + write(' ----------'), + nl, + xrf:pred_loc(M:F/A, FILE, LINE, LINE2), + xrf:file(FILE, NAME, DIR), + write(FILE), nl, + write(NAME), nl, + + cone_above(M:F/A), + !, bottoms_up(MFAs). + +cone_below(M:F/A) :- + nl, + write(M:F/A), write(' '), write('uses:'), nl, + xrf:uses(M:F/A, L), + cones_below(L, 1, [M:F/A]). + +cones_below([], _, _) :- !. +cones_below([M:F/A | MFAs], I, Visited) :- + memberchk(M:F/A, Visited), + tab(I), + write(M:F/A), + write(' ***** looping *****'), + nl, + !, cones_below(MFAs, I, [M:F/A | Visited]). +cones_below([M:F/A | MFAs], I, Visited) :- + tab(I), + write(M:F/A), + nl, + xrf:uses(M:F/A, L), + II is I + 1, + cones_below(L, II, [M:F/A | Visited]), + !, cones_below(MFAs, I, Visited). +cones_below([_ | MFAs], I, Visited) :- + !, cones_below(MFAs, I, Visited). + +cone_above(M:F/A) :- + nl, + write(M:F/A), write(' '), write('modified in and callers upstream:'), nl, + xrf:modified_in(M:F/A, L), + cones_above(L, 1, [M:F/A]), + nl, + write(M:F/A), write(' '), write('used by:'), nl, + xrf:used_by(M:F/A, LL), + cones_above(LL, 1, [M:F/A]). + + +cones_above([], _, _) :- !. +cones_above([M:F/A | MFAs], I, Visited) :- + memberchk(M:F/A, Visited), + tab(I), + write(M:F/A), + write(' ***** looping *****'), + nl, + !, cones_above(MFAs, I, [M:F/A | Visited]). +cones_above([M:F/A | MFAs], I, Visited) :- + tab(I), + write(M:F/A), + nl, + xrf:used_by(M:F/A, L), + II is I + 1, + cones_above(L, II, [M:F/A | Visited]), + !, cones_above(MFAs, I, Visited). +cones_above([_ | MFAs], I, Visited) :- + !, cones_above(MFAs, I, Visited). + + +warning_report :- + nl, write('----- Warnings -----'), nl, + findall(W, xrf:warning(_, W), Ws), + sort(Ws, SWs), + write_warnings(SWs). + +write_warnings([]). +write_warnings([W|Ws]) :- + write_list(W, true), nl, + write_warnings(Ws). + +write_list([], _). +write_list([X], _) :- + !, write(X). +write_list([X|Y], Separator) :- + write(X), + call(Separator), + write_list(Y, Separator). diff --git a/xrf_SessionManager.txt b/xrf_SessionManager.txt new file mode 100644 index 0000000..1eb17c9 --- /dev/null +++ b/xrf_SessionManager.txt @@ -0,0 +1,118017 @@ +*** ERROR *** /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro:782 +error(syntax_error(, | or ] expected in list),syntax_error(read(4466884592,_10500),788,, | or ] expected in list,[atom(nodeExecutionLogic)-785,(-785,var(79050750,[68,111,109,97,105,110],_10521)-785,,-785,var(349605,[78,111,100,101],_10547)-785,,-785,var(51599723,[67,97,108,108,76,111,103,105,99],_10569)-785,)-785,atom(:-)-785,atom(nodeFunctionAndParentFunction)-786,(-786,var(79050750,[68,111,109,97,105,110],_10521)-786,,-786,var(349605,[78,111,100,101],_10547)-786,,-786,var(203258307,[78,111,100,101,70,117,110,99,116,105,111,110],_10668)-786,,-786,var(164819668,[80,97,114,101,110,116,70,117,110,99,116,105,111,110],_10706)-786,,-786,var(78689208,[67,111,110,100,105,116,105,111,110],_10748)-786,)-786,,-786,atom(!)-787,,-787,var(51599723,[67,97,108,108,76,111,103,105,99],_10569)-788,atom(=)-788,[-788, (-788,atom(primitive)-788,(-788,atom(executedFunc)-788,(-788,var(164819668,[80,97,114,101,110,116,70,117,110,99,116,105,111,110],_10706)-788,)-788,)-788,,-788,var(78689208,[67,111,110,100,105,116,105,111,110],_10748)-788,)-788,atom(<->)-788, (-788,atom(primitive)-788,(-788,atom(executedFunc)-788,(-788,var(203258307,[78,111,100,101,70,117,110,99,116,105,111,110],_10668)-788,)-788,)-788,)-788,,-788, (-789,atom(primitive)-789,(-789,atom(executedNode)-789,(-789,var(349605,[78,111,100,101],_10547)-789,)-789,)-789,atom(<->)-789,atom(primitive)-789,(-789,atom(executedFunc)-789,(-789,var(203258307,[78,111,100,101,70,117,110,99,116,105,111,110],_10668)-789,)-789,)-789,)-789,]-789,.-789],30)) + +*** ERROR *** /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro:788 +error(syntax_error() or operator expected),syntax_error(read(4466884592,_10500),795,) or operator expected,[atom(nodeExecutionLogic)-791,(-791,var(62273528,[95,68,111,109,97,105,110],_10521)-791,,-791,var(349605,[78,111,100,101],_10549)-791,,-791,var(51599723,[67,97,108,108,76,111,103,105,99],_10571)-791,)-791,atom(:-)-791,atom(nodeFunction)-792,(-792,var(349605,[78,111,100,101],_10549)-792,,-792,var(203258307,[78,111,100,101,70,117,110,99,116,105,111,110],_10644)-792,)-792,,-792,atom(!)-793,,-793,var(51599723,[67,97,108,108,76,111,103,105,99],_10571)-794,atom(=)-794,[-794,atom(primitive)-794,(-794,atom(executedFunc)-794,(-794,var(203258307,[78,111,100,101,70,117,110,99,116,105,111,110],_10644)-794,)-794,)-794,,-794, (-795,atom(primitive)-795,(-795,atom(executedNode)-795,(-795,var(349605,[78,111,100,101],_10549)-795,)-795,)-795,atom(<->)-795,atom(primitive)-795,(-795,atom(executedFunc)-795,(-795,var(203258307,[78,111,100,101,70,117,110,99,116,105,111,110],_10644)-795,)-795,)-795,)-795,]-795,.-795],11)) + +--------- Files that load other files ---------- +top +> /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +> > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/DBInterfaces/applicationModel.pro +> > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/appFnInterface.pro +> > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/appFnInterface.pro*** circular *** +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostic_ops.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/DBInterfaces/applicationModel.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/feasibilityService.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/reasoningEngine.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/backSubstituter.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/rankingFunction.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostic_ops.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/backSubstituter.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostic_ops.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostic_ops.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/backSubstituter.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostic_ops.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostic_ops.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/backSubstituter.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostic_ops.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/backSubstituter.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/rankingFunction.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostic_ops.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostic_ops.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/backSubstituter.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostic_ops.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/appFnUtilities.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/transactionInterface.pro +> > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro*** circular *** +> > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +> > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +> > > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +> > > > /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro + +----- Warnings ----- +Discontiguous definition of: logicTranslator:processNode/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Discontiguous definition of: loopRewriter:getIterationVar/7 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro +Discontiguous definition of: miniCParse:arithmeticExpression/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Discontiguous definition of: miniCParse:arithmeticExpression/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Discontiguous definition of: miniCParse:arithmeticTerm/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Discontiguous definition of: miniCParse:arithmeticTerm/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Discontiguous definition of: miniCParse:statement/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Discontiguous definition of: miniCParse:statement/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Discontiguous definition of: miniCobolParse:(-)/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Discontiguous definition of: miniCobolParse:arithmeticExpression/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Discontiguous definition of: miniCobolParse:arithmeticExpression/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Discontiguous definition of: miniCobolParse:arithmeticTerm/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Discontiguous definition of: miniCobolParse:arithmeticTerm/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Discontiguous definition of: miniCobolParse:conditionalFactor/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Discontiguous definition of: miniCobolParse:varInArguments/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Discontiguous definition of: miniCobolParse:varOutArguments/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Discontiguous definition of: rankingFunction:getVariableMaxIterations/10 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/rankingFunction.pro +Discontiguous definition of: semantics:extractTableName/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +Discontiguous definition of: semantics:getTableName/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +Undefined: (-)/2 in module tokenize called from lineTokens/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: : /3 in module libraryModule called from libCreatePrintf/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +Undefined: cond2/2 in module cfm_mappings called from initialNodes/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Undefined: datime/1 in module diagnostics called from getTimeStamp/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Undefined: datime/1 in module diagnostics called from log/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Undefined: datime/1 in module diagnostics called from write_log/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Undefined: datime/1 in module diagnostics called from write_terminal_log/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Undefined: datime/1 in module log called from timestamp/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +Undefined: datime/1 in module semantics called from execute/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +Undefined: definitions/3 in module miniCParse called from getFileDefinitionsC/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: definitions/3 in module miniCobolParse called from getFileDefinitionsCobol/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: environ/2 in module diagnostics called from get_log_file/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Undefined: environ/2 in module diagnostics called from log_directory/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Undefined: environ/2 in module diagnostics called from rename_log_file_with_timestamp/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Undefined: fullLineTokens/3 in module tokenize called from fileTokens/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: functionDefinition/1 in module miniCParse called from functionDefinitions/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: input/3 in module dfm_mappings called from variable/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Undefined: internalBridge/3 in module ontology called from bridge/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +Undefined: internalIsA/3 in module ontology called from internalHasA/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +Undefined: internalIsA/3 in module ontology called from isA/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +Undefined: isClose/3 in module dfmTraversal called from isStraightLine/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isDB2CloseCursor/3 in module dfmTraversal called from isStraightLine/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isDB2DeclareCursor/3 in module dfmTraversal called from isStraightLine/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isDB2Delete/3 in module dfmTraversal called from isStraightLine/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isDB2Fetch/3 in module dfmTraversal called from isStraightLine/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isDB2Insert/3 in module dfmTraversal called from isStraightLine/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isDB2OpenCursor/3 in module dfmTraversal called from isStraightLine/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isDB2Select/3 in module dfmTraversal called from isStraightLine/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isDB2Update/3 in module dfmTraversal called from isStraightLine/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isDelete/3 in module dfmTraversal called from isStraightLine/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isIfFunction/5 in module dfmTraversal called from generate_next_arc/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isIfFunction/7 in module dfmInterface called from buildFromTerminalNode/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Undefined: isLoaded/0 in module appFnInterface called from loadApplicationFunctionsIfNecessary/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/appFnInterface.pro +Undefined: isLoop/5 in module dfmTraversal called from generate_next_arc/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isOpen/3 in module dfmTraversal called from isStraightLine/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isRead/3 in module dfmInterface called from buildEdges/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Undefined: isRead/3 in module dfmTraversal called from isStraightLine/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: isSetUp/1 in module sessionManager called from setUpCurrentProject/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +Undefined: lineGet1/3 in module cfm_mappings called from lineNumber/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Undefined: lineGet1/3 in module dfm_mappings called from lineNumber/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Undefined: lineGet2/3 in module cfm_mappings called from lineNumber/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Undefined: lineGet2/3 in module dfm_mappings called from lineNumber/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Undefined: list_to_ord_set/2 in module dfmCreate called from retractPredNonGateNodes/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +Undefined: list_to_ord_set/2 in module executeMiniProgram called from staticSingleAssignment/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Undefined: list_to_set/2 in module dfmTraversal called from find_all_downstream_nodes_inclusive/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: list_to_set/2 in module dfmTraversal called from find_all_upstream_nodes_inclusive/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: mapInputDependencies/1 in module dfmCreate called from createDependencies/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +Undefined: methodFind/3 in module cfm_mappings called from methodName/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Undefined: methodFind/3 in module dfm_mappings called from methodName/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Undefined: multilineComment/0 in module miniCParse called from statements/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: nodeExecutionLogic/3 in module logicTranslator called from nodesExecutionLogic/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Undefined: now/1 in module semantics called from execute/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +Undefined: output/3 in module dfm_mappings called from variable/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Undefined: paragraph/3 in module miniCobolParse called from paragraphs/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: piFuncFind/3 in module cfm_mappings called from methodName/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Undefined: piFuncFind/3 in module dfm_mappings called from methodName/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Undefined: procedureDivBody/4 in module miniCobolParse called from procedureDiv/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: read_from_codes/2 in module reasoningEngine called from resolveFeasibility/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/reasoningEngine.pro +Undefined: read_term_from_codes/3 in module dfmTraversal called from convertAtomToTerm/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: resolveFeasibilityOfNode/4 in module feasibilityService called from feasibilityServiceNode/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/feasibilityService.pro +Undefined: samsort/2 in module semantics called from getNextRecord/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +Undefined: samsort/2 in module semantics called from getRecord/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +Undefined: section/3 in module miniCobolParse called from sections/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: smtFormula/3 in module rankingFunction called from getNumIterations/8 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/rankingFunction.pro +Undefined: smtFormula/3 in module reasoningEngine called from resolveFeasibilityHelper/6 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/reasoningEngine.pro +Undefined: statement/1 in module miniCobolParse called from statements/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: subtract/3 in module dfmCreate called from getRidOfPhiVars/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +Undefined: subtract/3 in module logicTranslator called from processAllNodes/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Undefined: tcl_delete/1 in module tclGui called from tclQueryBox/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +Undefined: tcl_delete/1 in module tclScreen called from tclScreen/6 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +Undefined: tcl_eval/3 in module tclGui called from tclQueryBox/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +Undefined: tcl_eval/3 in module tclScreen called from launchProcedure/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +Undefined: tcl_eval/3 in module tclScreen called from launchScript/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +Undefined: tk_main_loop/0 in module tclGui called from tclQueryBox/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +Undefined: tk_main_loop/0 in module tclScreen called from launchMainLoop/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +Undefined: tk_main_loop/0 in module tclScreen called from tclScreen/6 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +Undefined: tk_new/2 in module tclGui called from tclQueryBox/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro +Undefined: tk_new/2 in module tclScreen called from tclScreen/6 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +Undefined: whiteSpaceToken/1 in module tokenize called from token/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: write_to_codes/2 in module dfmTraversal called from convertTermToAtom/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Undefined: write_to_codes/2 in module logicTranslator called from constrainArgument/8 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Undefined: write_to_codes/2 in module logicTranslator called from constrainExternalArgument/9 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Undefined: write_to_codes/2 in module solsticeUtility called from termToAtom/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +Undefined: {}/1 in module miniCParse called from (-)/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from arguments/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from arithmeticExpression/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from arithmeticExpression/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from arithmeticTerm/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from arithmeticTerm/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from caseStatements/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from conditionalExpression/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from conditionalFactor/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from conditionalTerm/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from controlStatement/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from dataType/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from externalFunction/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from function/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from functionDeclaration/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from functionDefinitions/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from globalDefinition/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from globalDefinitions/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from numberToken/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from parseCheckpoint/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from pluralized/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from pluralized/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from statement/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from statement/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCParse called from statements/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Undefined: {}/1 in module miniCobolParse called from (-)/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from controlStatement/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from dataDiv/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from fileDirectories/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from fileDirectory/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from numberToken/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from outputArgument/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from paragraphs/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from parseCheckpoint/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from pluralized/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from pluralized/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from procedureDiv/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from sections/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from statement/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from statements/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from token/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from varInArgument/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from varOutArgument/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from variableInstance/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from workingStorageSec/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from workingStorageStatement/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module miniCobolParse called from workingStorageStatements/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Undefined: {}/1 in module tokenize called from alphanumericCharCode/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from capitalizedAlphanumericToken/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from digitCode/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from doubleCode/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from fullLineTokens/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from letterCode/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from lineTokens/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from lowercaseLetterCode/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from margin/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from numberToken/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from punctuationToken/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from stringCharecters/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from uncapitalizedAlphanumericToken/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from uppercaseLetterCode/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Undefined: {}/1 in module tokenize called from whitespaceCharCode/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Unused predicate: appFnInterface:queryAppFn/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/appFnInterface.pro +Unused predicate: applicationFunction:applyUserConstraintsToAppFunction/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +Unused predicate: applicationFunction:createNodeVarMap/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +Unused predicate: applicationFunction:feasibilityOfNode/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +Unused predicate: applicationFunction:isAReadStatement/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +Unused predicate: applicationFunction:isAScreenStatement/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +Unused predicate: applicationFunction:loadArcs/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +Unused predicate: applicationModel:refreshModuleInApplicationModelForCurrentProject/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/DBInterfaces/applicationModel.pro +Unused predicate: applicationModel:retractModuleFromApplicationModelForCurrentProject/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/DBInterfaces/applicationModel.pro +Unused predicate: cfmStep:cfmStep/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +Unused predicate: cfm_mappings:cond/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Unused predicate: cfm_mappings:cond2/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Unused predicate: cfm_mappings:initialNode/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Unused predicate: cfm_mappings:initialNodes/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Unused predicate: cfm_mappings:lineNumber/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Unused predicate: cfm_mappings:methodName/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Unused predicate: cfm_mappings:phiByNode/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Unused predicate: cfm_mappings:phiByVar/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Unused predicate: cfm_mappings:stmtType/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +Unused predicate: dfmCreate:assertDominance/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +Unused predicate: dfmCreate:mapIfPredDominance/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +Unused predicate: dfmCreate:mapPredDepedencies/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +Unused predicate: dfmCreate:recursionVar/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +Unused predicate: dfmCreate:retractNonGate/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +Unused predicate: dfmInterface:arc_to_pair/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:blocking/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:buildTraversalGraph/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:contains/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:createExternalCallExitArcs/7 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:createFuncExitArcs/7 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:dfm/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:find_an_arc/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:formatDfmStmt/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:formatEdges/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:formatFacts/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:formatPiFunc/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:formatPiFuncSignature/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:formatPiSource/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:full_traverse/7 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:getAllDownStreamPi/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:getAllUpstreamPi/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:getExternalCallInput/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:getFunctionInput/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:get_terminal_pair/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:is_abort/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:is_continue/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:walkBackwardHelper/6 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmInterface:walkForwardHelper/6 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +Unused predicate: dfmStep:dfmStep/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +Unused predicate: dfmStep:findAFunction/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +Unused predicate: dfmStep:necessary/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +Unused predicate: dfmTraversal:assertExternalCalls/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:assertForwardArcOptimizationFacts/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:buildForwardArcs/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:buildNextStack/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:cleanupDomain/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:convertAtomToTerm/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:convertFactsToNewFormat/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:convertNodesToAtoms/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:externalCall/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:extractBooleanVariables/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:find_a_forward_arc/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:find_a_forward_pair/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:find_a_pair/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:find_all_downstream_nodes_inclusive/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:find_an_arc/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:forward_step/8 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:full_traverse/6 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:generate_next_pairs/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:getEnclosingControlStructurePairs/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:getFuncNode/6 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:get_terminal_nodes/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:isNodeInMainWithUnreadOutput/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:isStraightLine/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:iterationBlock/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:queryForMissingArcs/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:step/8 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:writeMissingArcsTxt/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:write_arcs/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmTraversal:write_missing_arclist/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +Unused predicate: dfmUtility:graphCfg/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +Unused predicate: dfmUtility:graphDfm/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +Unused predicate: dfm_mappings:cond/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Unused predicate: dfm_mappings:conditionalVar/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Unused predicate: dfm_mappings:initialNode/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Unused predicate: dfm_mappings:inoutput/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Unused predicate: dfm_mappings:lineNumber/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Unused predicate: dfm_mappings:methodName/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Unused predicate: dfm_mappings:moduleName/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Unused predicate: dfm_mappings:phiByNode/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Unused predicate: dfm_mappings:phiByVar/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Unused predicate: dfm_mappings:phiFunctions/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Unused predicate: dfm_mappings:stmtType/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Unused predicate: dfm_mappings:terminalNode/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Unused predicate: dfm_mappings:variable/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +Unused predicate: diagnostics:(?)/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:atomlist_concat/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:(bg)/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:check_bms/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:close_log_file/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:compare_lists/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:(ding)/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:dinged/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:(fugit)/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:fugitID/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:fugit_report/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:log/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:mltest/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:(pf)/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:profile_fini/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:profile_init/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:rename_log_file_with_timestamp/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:tempus/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:tempusFail/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:trace_af_frame/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:trace_close/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:trace_open/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: diagnostics:trace_tree/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +Unused predicate: errorHandler:test_logError/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +Unused predicate: executeMiniProgram:(:-)/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: executeMiniProgram:build/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: executeMiniProgram:build/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: executeMiniProgram:buildDfm/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: executeMiniProgram:buildDfm/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: executeMiniProgram:buildDfm/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: executeMiniProgram:conditionalPostProcessing/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: executeMiniProgram:getFunctionInputsOutputs/6 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: executeMiniProgram:getFunctionNeighbors/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: executeMiniProgram:namespaceToFile/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: executeMiniProgram:parseMiniC/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: executeMiniProgram:parseMiniCobol/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: executeMiniProgram:v/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: executeMiniProgram:variable/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +Unused predicate: feasibilityService:feasibilityServiceNode/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/feasibilityService.pro +Unused predicate: feasibilityService:getInfeasibleNodes/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/feasibilityService.pro +Unused predicate: feasibilityService:testFeasibilityOfNode/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/feasibilityService.pro +Unused predicate: feasibilityService:whileNodesExist/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/feasibilityService.pro +Unused predicate: fileInformation:fileOutputPath/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +Unused predicate: libraryModule:getLibFunction/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +Unused predicate: libraryModule:libCreatePrintf/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +Unused predicate: libraryModule:libPrintf/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +Unused predicate: libraryModule:runLibFunction/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +Unused predicate: log:callfail/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +Unused predicate: log:callfail/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +Unused predicate: log:exitredo/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +Unused predicate: log:exitredo/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +Unused predicate: log:log/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +Unused predicate: log:setLogLevel/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +Unused predicate: logicTranslationUtilities:findAllLoopsInProject/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +Unused predicate: logicTranslationUtilities:findLoopWithNoUpstreamLoops/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +Unused predicate: logicTranslationUtilities:isBadLoop/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +Unused predicate: logicTranslationUtilities:prettyPrinter/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +Unused predicate: logicTranslationUtilities:thisLoopIsNoGood/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +Unused predicate: logicTranslator:constrainArgument/8 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Unused predicate: logicTranslator:constrainExternalArgument/9 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Unused predicate: logicTranslator:constraintsGuaranteeStmtExecuted/6 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Unused predicate: logicTranslator:createFieldConstraints/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Unused predicate: logicTranslator:getConditionConstraints/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Unused predicate: logicTranslator:getFieldSizeFromOntology/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Unused predicate: logicTranslator:getWhileBodyNodes/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Unused predicate: logicTranslator:nodeFunction/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Unused predicate: logicTranslator:nodeFunctionAndParentFunction/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Unused predicate: logicTranslator:processNode/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Unused predicate: logicTranslator:stmtExecutionAndConstraintsIsPossible/6 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Unused predicate: logicTranslator:stmtExecutionGuaranteesConstraints/6 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +Unused predicate: loopRewriter:createInsidePhis/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro +Unused predicate: loopRewriter:getIterationVar/7 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro +Unused predicate: loopRewriter:modifyGlobalOuts/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro +Unused predicate: loopRewriter:rewriteLoop/7 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro +Unused predicate: miniCParse:caseStatements/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Unused predicate: miniCParse:definitions/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Unused predicate: miniCParse:expandStructure/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Unused predicate: miniCParse:functionDeclaration/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Unused predicate: miniCParse:processSource/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Unused predicate: miniCParse:statement/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Unused predicate: miniCParse:structureDefinition/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Unused predicate: miniCParse:substringException/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Unused predicate: miniCParse:switchToSetInstance/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Unused predicate: miniCParse:typedArguments/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +Unused predicate: miniCobolParse:condtionalFactor/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Unused predicate: miniCobolParse:curlyBracketed/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Unused predicate: miniCobolParse:definitions/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Unused predicate: miniCobolParse:equalsSetInstance/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Unused predicate: miniCobolParse:optional/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Unused predicate: miniCobolParse:pluralized/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Unused predicate: miniCobolParse:processSource/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Unused predicate: miniCobolParse:statement/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Unused predicate: miniCobolParse:switchToSetInstance/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Unused predicate: miniCobolParse:uncapitalizedAlphanumericToken/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +Unused predicate: ontology:getMaxFileSize/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +Unused predicate: ontology:getMinMaxFromFile/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +Unused predicate: ontology:getMinMaxFromScreen/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +Unused predicate: ontology:getPathInOntology/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +Unused predicate: operators:(?)/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +Unused predicate: operators:called/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +Unused predicate: operators:go/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +Unused predicate: preProcess:(:-)/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +Unused predicate: preProcess:findStartNode/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +Unused predicate: preProcess:getVariableInformation/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +Unused predicate: preProcess:initializeDebug/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +Unused predicate: preProcess:isAFile/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +Unused predicate: preProcess:retractState/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +Unused predicate: preProcess:runCfm/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +Unused predicate: preProcess:runDfm/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +Unused predicate: preProcess:step/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +Unused predicate: preProcess:terminateDebug/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +Unused predicate: rankingFunction:getMaxAndMinIterVarIsIncreasing/6 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/rankingFunction.pro +Unused predicate: rankingFunction:getVariableMaxIterations/10 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/rankingFunction.pro +Unused predicate: rankingFunction:maximum/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/rankingFunction.pro +Unused predicate: screenUtility:screenOutputArgs/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +Unused predicate: semantics:getColumnValues/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +Unused predicate: semantics:getTableName/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +Unused predicate: semantics:initialNode/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +Unused predicate: semantics:keyIsValid/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +Unused predicate: semantics:notValid/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +Unused predicate: semantics:scanGlobalOuts/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +Unused predicate: sessionManager:getCFMPath/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +Unused predicate: sessionManager:getDFMPath/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +Unused predicate: sessionManager:getScreensPath/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +Unused predicate: sessionManager:getSourcePath/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +Unused predicate: sessionManager:rebuildRepresentations/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +Unused predicate: sessionManager:reloadRepresentation/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +Unused predicate: sessionManager:removeSessionCurrentProject/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +Unused predicate: sessionManager:removeSessionProjectPath/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +Unused predicate: sessionManager:setTestingFlag/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +Unused predicate: sessionManager:setUpCurrentProject/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +Unused predicate: sessionManager:setUpCurrentProject/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +Unused predicate: solsticeFileUtility:save_module_txt/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +Unused predicate: solsticeUtility:atomNumber/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +Unused predicate: solsticeUtility:atomToNumber/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +Unused predicate: solsticeUtility:callOrRecall/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +Unused predicate: solsticeUtility:convertToAtom/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +Unused predicate: solsticeUtility:isDigit/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +Unused predicate: solsticeUtility:isFileExtension/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +Unused predicate: solsticeUtility:isListOfLists/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +Unused predicate: solsticeUtility:isTxtFile/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +Unused predicate: solsticeUtility:pretty_print/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +Unused predicate: solsticeUtility:primitiveEquality/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +Unused predicate: taggedParsing: : /2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +Unused predicate: taggedParsing:(:-)/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +Unused predicate: taggedParsing:tagPhrase/5 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +Unused predicate: tclScreen:loadFileRecords/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +Unused predicate: tclScreen:screenInit/0 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +Unused predicate: tclScreen:setFileRecords/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +Unused predicate: tclScreen:setVars/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +Unused predicate: tclScreen:validRecord/4 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +Unused predicate: tokenize:capitalize/2 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Unused predicate: tokenize:fullLineTokens/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Unused predicate: tokenize:language/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Unused predicate: tokenize:token/1 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +Unused predicate: transactionInterface:getEventName/3 in /Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/transactionInterface.pro + +----- Predicate Use ----- + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/appFnInterface.pro + +appFnInterface:cleanUp/0 appFnInterface.pro:313:320 + subgoals: + appFnInterface:getAppFnDomain/1 + builtin:retractall/1 + called from: + appFnInterface:loadAllApplicationFunctions/1 + sessionManager:cleanUpRepresentations/0 + sessionManager:reloadRepresentation/2 + +appFnInterface:getAppFnDomain/1 appFnInterface.pro:320:322 + no subgoals + called from: + appFnInterface:cleanUp/0 + appFnInterface:processConstraint/3 + appFnInterface:processNoConstraintQuery/2 + appFnInterface:retrieveRepresentation/1 + applicationFunction:applyUserConstraintsToAppFunction/4 + applicationFunction:feasibilityOfNode/5 + +appFnInterface:loadAllApplicationFunctions/1 appFnInterface.pro:262:272 + subgoals: + appFnInterface:cleanUp/0 + lists:exclude/3 + file_systems:file_members_of_directory/2 + appFnInterface:retrieveRepresentation/1 + called from: + appFnInterface:loadApplicationFunctions/1 + appFnInterface:loadApplicationFunctionsIfNecessary/0 + +appFnInterface:loadApplicationFunctions/1 appFnInterface.pro:241:259 + subgoals: + builtin: = /2 + lists:exclude/3 + file_systems:file_members_of_directory/2 + applicationFunction:generateApplicationFunctions/1 + sessionManager:getCurrentProject/1 + appFnInterface:loadAllApplicationFunctions/1 + called from: + appFnInterface:queryAppFn/3 + sessionManager:assertRepresentations/0 + sessionManager:reloadRepresentation/2 + +appFnInterface:loadApplicationFunctionsIfNecessary/0 appFnInterface.pro:291:298 + subgoals: + undefined:isLoaded/0 + appFnInterface:loadAllApplicationFunctions/1 + sessionManager:getApplicationModelPath/1 + called from: + applicationFunction:applyUserConstraintsToAppFunction/4 + applicationFunction:feasibilityOfNode/5 + +appFnInterface:loadRepresentation/2 appFnInterface.pro:301:313 + subgoals: + builtin:(\+)/1 + builtin:assert/1 + appFnInterface:loadRepresentation/2 + builtin:read/2 + called from: + appFnInterface:loadRepresentation/2 + appFnInterface:retrieveRepresentation/1 + +appFnInterface:processConstraint/3 appFnInterface.pro:78:95 + subgoals: + builtin:,/2 + builtin: = /2 + appFnInterface:getAppFnDomain/1 + called from: + appFnInterface:processConstraintListQuery/4 + +appFnInterface:processConstraintListQuery/4 appFnInterface.pro:63:68 + subgoals: + builtin: = /2 + appFnInterface:processConstraint/3 + appFnInterface:processConstraintListQuery/4 + called from: + appFnInterface:processConstraintListQuery/4 + appFnInterface:processQuery/3 + +appFnInterface:processNoConstraintQuery/2 appFnInterface.pro:43:53 + subgoals: + builtin:,/2 + builtin:findall/3 + appFnInterface:getAppFnDomain/1 + called from: + appFnInterface:processQuery/3 + +appFnInterface:processQuery/3 appFnInterface.pro:32:39 + subgoals: + appFnInterface:processConstraintListQuery/4 + appFnInterface:processNoConstraintQuery/2 + called from: + appFnInterface:queryAppFn/3 + +appFnInterface:queryAppFn/3 appFnInterface.pro:19:32 + subgoals: + builtin:(\+)/1 + sessionManager:getAppFnPath/1 + appFnInterface:loadApplicationFunctions/1 + appFnInterface:processQuery/3 + no callers + +appFnInterface:retrieveRepresentation/1 appFnInterface.pro:272:285 + subgoals: + builtin: = /2 + builtin:close/1 + appFnInterface:getAppFnDomain/1 + solsticeUtility:isHiddenFile/1 + appFnInterface:loadRepresentation/2 + builtin:open/3 + called from: + appFnInterface:loadAllApplicationFunctions/1 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/appFnUtilities.pro + +appFnUtilities:getCursorSelectStmt/2 appFnUtilities.pro:173:183 + subgoals: + builtin: = /2 + log:log/2 + query_interface:queryVerify/4 + called from: + applicationFunction:processDB2Position/6 + applicationFunction:retrieveConceptByStmt/3 + +appFnUtilities:getDB2DeleteStatementInfo/1 appFnUtilities.pro:161:173 + subgoals: + builtin:findall/3 + called from: + appFnUtilities:getDfmInfo/7 + +appFnUtilities:getDB2ReadStatementInfo/1 appFnUtilities.pro:113:139 + subgoals: + builtin:findall/3 + called from: + appFnUtilities:getDfmInfo/7 + +appFnUtilities:getDB2WriteStatementInfo/1 appFnUtilities.pro:139:161 + subgoals: + builtin:findall/3 + called from: + appFnUtilities:getDfmInfo/7 + +appFnUtilities:getDFMStatementInfo/2 appFnUtilities.pro:9:21 + subgoals: + lists:append/2 + appFnUtilities:getDfmInfo/7 + called from: + applicationFunction:constructApplicationFunctions/3 + +appFnUtilities:getDeleteStatementInfo/1 appFnUtilities.pro:102:113 + subgoals: + builtin:findall/3 + called from: + appFnUtilities:getDfmInfo/7 + +appFnUtilities:getDfmInfo/7 appFnUtilities.pro:21:46 + subgoals: + builtin:append/3 + appFnUtilities:getDB2DeleteStatementInfo/1 + appFnUtilities:getDB2ReadStatementInfo/1 + appFnUtilities:getDB2WriteStatementInfo/1 + appFnUtilities:getDeleteStatementInfo/1 + appFnUtilities:getReadStatementInfo/1 + appFnUtilities:getScreenStatementInfo/2 + appFnUtilities:getWriteStatementInfo/1 + called from: + appFnUtilities:getDFMStatementInfo/2 + +appFnUtilities:getReadStatementInfo/1 appFnUtilities.pro:63:82 + subgoals: + builtin:findall/3 + called from: + appFnUtilities:getDfmInfo/7 + +appFnUtilities:getScreenStatementInfo/2 appFnUtilities.pro:82:102 + subgoals: + builtin:findall/3 + called from: + appFnUtilities:getDfmInfo/7 + +appFnUtilities:getWriteStatementInfo/1 appFnUtilities.pro:46:63 + subgoals: + builtin:findall/3 + called from: + appFnUtilities:getDfmInfo/7 + +appFnUtilities:splitWhereClause/3 appFnUtilities.pro:190:195 + subgoals: + builtin:(\+)/1 + appFnUtilities:splitWhereClause/3 + called from: + appFnUtilities:splitWhereClause/3 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro + +applicationFunction:appFunctionCount/1 dynamic applicationFunction.pro:0:0 + modified in: + applicationFunction:getAndIncrementAppFunctionCount/1 + no subgoals + called from: + applicationFunction:getAndIncrementAppFunctionCount/1 + +applicationFunction:applyUserConstraintsToAppFunction/4 applicationFunction.pro:165:186 + subgoals: + appFnInterface:getAppFnDomain/1 + appFnInterface:loadApplicationFunctionsIfNecessary/0 + builtin:,/2 + builtin:(\+)/1 + log:log/2 + builtin:throw/1 + no callers + +applicationFunction:constructApplicationFunctions/3 applicationFunction.pro:79:139 + subgoals: + builtin: = /2 + builtin:atom_concat/3 + applicationFunction:createAppFunctionsFrame/5 + applicationFunction:generateEncodingAppFunctions/5 + applicationFunction:generateInfoTransAppFunctions/5 + sessionManager:getAppFnPath/1 + appFnUtilities:getDFMStatementInfo/2 + builtin:ground/1 + builtin:length/2 + log:log/2 + applicationFunction:resetAppFunctionCount/0 + applicationFunction:writeAppFunctionsToFile/2 + called from: + applicationFunction:generateApplicationFunctions/2 + +applicationFunction:createAppFunctionsFrame/5 applicationFunction.pro:842:854 + subgoals: + builtin: = /2 + called from: + applicationFunction:constructApplicationFunctions/3 + +applicationFunction:createNodeVarMap/3 applicationFunction.pro:765:778 + subgoals: + builtin: = /2 + builtin:(\+)/1 + builtin:append/3 + builtin:member/2 + lists:selectchk/3 + no callers + +applicationFunction:feasibilityOfNode/5 applicationFunction.pro:139:156 + subgoals: + appFnInterface:getAppFnDomain/1 + appFnInterface:loadApplicationFunctionsIfNecessary/0 + builtin:,/2 + builtin:(\+)/1 + log:log/2 + builtin:throw/1 + no callers + +applicationFunction:filter_nodes/3 applicationFunction.pro:421:423 + subgoals: + builtin: \== /2 + applicationFunction:filter_nodes/3 + builtin:member/2 + builtin:sub_atom/5 + called from: + applicationFunction:filter_nodes/3 + applicationFunction:resolveConeOfInfluence/5 + +applicationFunction:formatApplicationFunction/5 applicationFunction.pro:671:700 + subgoals: + builtin: = /2 + applicationFunction:getAndIncrementAppFunctionCount/1 + applicationFunction:isInLoop/2 + builtin:member/2 + lists:scanlist/4 + called from: + applicationFunction:resolveApplicationFunctions/6 + +applicationFunction:generateAppFunctionFromVar/7 applicationFunction.pro:322:335 + subgoals: + builtin:if/3 + builtin:length/2 + log:log/2 + applicationFunction:resolveApplicationFunctions/6 + applicationFunction:resolveConeOfInfluence/5 + user:skip_me/1 + called from: + applicationFunction:generateAppFunctionsFromStmt/7 + +applicationFunction:generateAppFunctionsFromStmt/7 applicationFunction.pro:247:260 + subgoals: + builtin:append/3 + applicationFunction:generateAppFunctionFromVar/7 + applicationFunction:generateAppFunctionsFromStmt/7 + applicationFunction:getVariablePosition/7 + builtin:member/2 + builtin:throw/1 + called from: + applicationFunction:generateAppFunctionsFromStmt/7 + applicationFunction:generateEncodingAppFunctions/5 + applicationFunction:generateInfoTransAppFunctions/5 + +applicationFunction:generateApplicationFunctions/1 applicationFunction.pro:43:58 + subgoals: + applicationFunction:generateApplicationFunctions/2 + applicationFunction:smtSolverDefault/1 + called from: + appFnInterface:loadApplicationFunctions/1 + +applicationFunction:generateApplicationFunctions/2 applicationFunction.pro:63:79 + subgoals: + applicationFunction:constructApplicationFunctions/3 + log:log/2 + applicationFunction:setUpAppFnProject/1 + called from: + applicationFunction:generateApplicationFunctions/1 + +applicationFunction:generateEncodingAppFunctions/5 applicationFunction.pro:224:233 + subgoals: + builtin:append/3 + applicationFunction:generateAppFunctionsFromStmt/7 + applicationFunction:generateEncodingAppFunctions/5 + applicationFunction:getEncodingVariables/2 + log:log/2 + called from: + applicationFunction:constructApplicationFunctions/3 + applicationFunction:generateEncodingAppFunctions/5 + +applicationFunction:generateInfoTransAppFunctions/5 applicationFunction.pro:195:210 + subgoals: + builtin:append/3 + applicationFunction:generateAppFunctionsFromStmt/7 + applicationFunction:generateInfoTransAppFunctions/5 + applicationFunction:getWriteVariables/2 + log:log/2 + called from: + applicationFunction:constructApplicationFunctions/3 + applicationFunction:generateInfoTransAppFunctions/5 + +applicationFunction:getAndIncrementAppFunctionCount/1 applicationFunction.pro:886:896 + subgoals: + builtin: = /2 + builtin:(\+)/1 + applicationFunction:appFunctionCount/1 + builtin:is/2 + builtin:retractall/1 + assert-applicationFunction:appFunctionCount/1 + called from: + applicationFunction:formatApplicationFunction/5 + +applicationFunction:getConcept/5 applicationFunction.pro:543:550 + subgoals: + builtin:atom_concat/3 + ontology:getConceptFromColumnName/3 + ontology:getConceptFromFile/3 + ontology:getConceptFromScreen/3 + ontology:getKeyConceptFromFile/3 + log:log/2 + called from: + applicationFunction:resolveApplicationFunctions/6 + +applicationFunction:getEncodingVariables/2 applicationFunction.pro:734:742 + subgoals: + builtin:member/2 + builtin:throw/1 + called from: + applicationFunction:generateEncodingAppFunctions/5 + +applicationFunction:getPathVarConcepts/2 applicationFunction.pro:573:582 + subgoals: + builtin:member/2 + applicationFunction:retrieveConcept/2 + builtin:throw/1 + called from: + applicationFunction:resolveApplicationFunctions/6 + +applicationFunction:getVariablePosition/7 applicationFunction.pro:280:287 + subgoals: + builtin: = /2 + builtin:is/2 + applicationFunction:isDBAppFnName/1 + lists:is_list/1 + builtin:member/2 + lists:nth1/3 + called from: + applicationFunction:generateAppFunctionsFromStmt/7 + +applicationFunction:getWriteVariables/2 applicationFunction.pro:710:720 + subgoals: + builtin:member/2 + builtin:throw/1 + called from: + applicationFunction:generateInfoTransAppFunctions/5 + +applicationFunction:get_file_path/2 applicationFunction.pro:837:840 + subgoals: + builtin:(\+)/1 + builtin:atom_concat/3 + called from: + applicationFunction:loadArcs/1 + +applicationFunction:isAReadStatement/3 applicationFunction.pro:753:762 + subgoals: + query_interface:queryVerify/4 + no callers + +applicationFunction:isAScreenStatement/3 applicationFunction.pro:762:765 + subgoals: + query_interface:queryVerify/4 + no callers + +applicationFunction:isDBAppFnName/1 applicationFunction.pro:785:793 + subgoals: + builtin:atom_concat/3 + called from: + applicationFunction:getVariablePosition/7 + +applicationFunction:isInLoop/2 applicationFunction.pro:700:709 + subgoals: + builtin: = /2 + builtin:atom_concat/3 + query_interface:queryVerify/4 + called from: + applicationFunction:formatApplicationFunction/5 + +applicationFunction:loadArcs/1 applicationFunction.pro:830:837 + subgoals: + lists:append/2 + builtin:ensure_loaded/1 + lists:exclude/3 + file_systems:file_members_of_directory/2 + applicationFunction:get_file_path/2 + no callers + +applicationFunction:processDB2Position/6 applicationFunction.pro:793:799 + subgoals: + builtin: = /2 + appFnUtilities:getCursorSelectStmt/2 + lists:head/2 + lists:nth1/3 + solsticeFileUtility:resolveFileName/2 + solsticeUtility:splitAtom/3 + called from: + applicationFunction:resolveApplicationFunctions/6 + +applicationFunction:removeNodeVarDups/2 applicationFunction.pro:432:446 + subgoals: + builtin: = /2 + log:log/2 + builtin:member/2 + lists:remove_dups/2 + called from: + applicationFunction:resolveConeOfInfluence/5 + +applicationFunction:resetAppFunctionCount/0 applicationFunction.pro:901:904 + subgoals: + builtin:retractall/1 + called from: + applicationFunction:constructApplicationFunctions/3 + +applicationFunction:resolveApplicationFunctions/6 applicationFunction.pro:450:485 + subgoals: + builtin: = /2 + applicationFunction:formatApplicationFunction/5 + applicationFunction:getConcept/5 + applicationFunction:getPathVarConcepts/2 + builtin:member/2 + applicationFunction:processDB2Position/6 + query_interface:queryVerify/4 + solsticeFileUtility:resolveFileName/2 + builtin:throw/1 + called from: + applicationFunction:generateAppFunctionFromVar/7 + +applicationFunction:resolveConeOfInfluence/5 applicationFunction.pro:366:403 + subgoals: + builtin:(\+)/1 + builtin: \= /2 + applicationFunction:filter_nodes/3 + builtin:findall/3 + builtin:member/2 + query_interface:queryVerify/4 + applicationFunction:removeNodeVarDups/2 + lists:remove_dups/2 + called from: + applicationFunction:generateAppFunctionFromVar/7 + +applicationFunction:retrieveConcept/2 applicationFunction.pro:585:595 + subgoals: + builtin:member/2 + query_interface:queryVerify/4 + applicationFunction:retrieveConceptByStmt/3 + called from: + applicationFunction:getPathVarConcepts/2 + +applicationFunction:retrieveConceptByStmt/3 applicationFunction.pro:601:609 + subgoals: + builtin: = /2 + ontology:getConceptFromColumnName/3 + ontology:getConceptFromFile/3 + ontology:getConceptFromScreen/3 + appFnUtilities:getCursorSelectStmt/2 + ontology:getKeyConceptFromFile/3 + lists:is_list/1 + log:log/2 + lists:nth1/3 + solsticeFileUtility:resolveFileName/2 + solsticeUtility:splitAtom/3 + called from: + applicationFunction:retrieveConcept/2 + +applicationFunction:setUpAppFnProject/1 applicationFunction.pro:810:830 + subgoals: + applicationModel:generateApplicationModelForCurrentProject/0 + dfmTraversal:build_dfm_traversal_graph/2 + sessionManager:getApplicationModelPath/1 + sessionManager:getArcPath/1 + sessionManager:getCurrentProject/1 + log:log/2 + sessionManager:hasBeenBuilt/2 + called from: + applicationFunction:generateApplicationFunctions/2 + +applicationFunction:smtSolverDefault/1 applicationFunction.pro:35:43 + no subgoals + called from: + applicationFunction:generateApplicationFunctions/1 + +applicationFunction:writeAppFunctionsHelper/2 applicationFunction.pro:881:883 + subgoals: + builtin:nl/1 + builtin:write/2 + applicationFunction:writeAppFunctionsHelper/2 + builtin:writeq/2 + called from: + applicationFunction:writeAppFunctionsHelper/2 + applicationFunction:writeAppFunctionsToFile/2 + +applicationFunction:writeAppFunctionsToFile/2 applicationFunction.pro:854:881 + subgoals: + builtin:close/1 + builtin:memberchk/2 + builtin:open/3 + builtin:write/2 + applicationFunction:writeAppFunctionsHelper/2 + called from: + applicationFunction:constructApplicationFunctions/3 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/DBInterfaces/applicationModel.pro + +applicationModel:artifactExtension/1 applicationModel.pro:17:21 + no subgoals + called from: + applicationModel:artifactFilter/1 + applicationModel:assertFactsIntoApplicationModelFromArtifact/3 + applicationModel:refreshModuleInApplicationModelForCurrentProject/1 + +applicationModel:artifactFilter/1 applicationModel.pro:21:25 + subgoals: + applicationModel:artifactExtension/1 + builtin:atom_concat/3 + called from: + applicationModel:assertFactsIntoApplicationModel/3 + +applicationModel:assertFactsIntoApplicationModel/3 applicationModel.pro:183:193 + subgoals: + applicationModel:artifactFilter/1 + applicationModel:assertFactsIntoApplicationModelFromArtifact/3 + file_systems:file_members_of_directory/3 + called from: + applicationModel:generateApplicationModelForCurrentProject/0 + +applicationModel:assertFactsIntoApplicationModelFromArtifact/3 applicationModel.pro:193:203 + subgoals: + applicationModel:artifactExtension/1 + applicationModel:assertModuleIntoApplicationModel/4 + builtin:atom_concat/3 + called from: + applicationModel:assertFactsIntoApplicationModel/3 + +applicationModel:assertModuleIntoApplicationModel/4 applicationModel.pro:203:230 + subgoals: + applicationModel:assertTermAndReadNext/5 + builtin:atom_concat/3 + builtin:close/1 + log:log/2 + builtin:open/3 + builtin:read/2 + called from: + applicationModel:assertFactsIntoApplicationModelFromArtifact/3 + applicationModel:refreshModuleInApplicationModelForCurrentProject/1 + +applicationModel:assertTermAndReadNext/5 applicationModel.pro:230:236 + subgoals: + builtin: =.. /2 + builtin:assert/1 + applicationModel:assertTermAndReadNext/5 + applicationModel:localizeNodeName/3 + builtin:read/2 + called from: + applicationModel:assertModuleIntoApplicationModel/4 + applicationModel:assertTermAndReadNext/5 + +applicationModel:cleanApplicationModelForCurrentProject/0 applicationModel.pro:25:38 + subgoals: + applicationModel:cleanApplicationModelForProject/1 + sessionManager:getCurrentProject/1 + called from: + applicationModel:generateApplicationModelForCurrentProject/0 + +applicationModel:cleanApplicationModelForProject/1 applicationModel.pro:38:50 + subgoals: + builtin:abolish/1 + builtin:atom_concat/3 + log:log/2 + called from: + applicationModel:cleanApplicationModelForCurrentProject/0 + +applicationModel:ensureApplicationModelDirectoryExists/0 applicationModel.pro:286:297 + subgoals: + sessionManager:getApplicationModelPath/1 + builtin:if/3 + called from: + applicationModel:generateApplicationModelForCurrentProject/0 + +applicationModel:generateApplicationModelForCurrentProject/0 applicationModel.pro:110:140 + subgoals: + applicationModel:assertFactsIntoApplicationModel/3 + builtin:atom_concat/3 + applicationModel:cleanApplicationModelForCurrentProject/0 + applicationModel:ensureApplicationModelDirectoryExists/0 + log:log/2 + applicationModel:writeApplicationModelToFile/0 + sessionManager:getCFMPath/1 + sessionManager:getCurrentProject/1 + sessionManager:getDFMPath/1 + called from: + applicationFunction:setUpAppFnProject/1 + +applicationModel:loadApplicationModelForCurrentProject/0 applicationModel.pro:140:151 + subgoals: + builtin:current_predicate/2 + file_systems:file_members_of_directory/2 + lists:include/3 + applicationModel:retrieveRepresentation/2 + builtin:throw/1 + sessionManager:getApplicationModelPath/1 + sessionManager:getCurrentProject/1 + called from: + sessionManager:assertRepresentations/0 + +applicationModel:loadRepresentation/2 applicationModel.pro:172:183 + subgoals: + builtin:(\+)/1 + builtin:assert/1 + applicationModel:loadRepresentation/2 + builtin:read/2 + called from: + applicationModel:loadRepresentation/2 + applicationModel:retrieveRepresentation/2 + +applicationModel:localizeNodeName/3 applicationModel.pro:297:317 + subgoals: + builtin: = /2 + builtin:atom/1 + builtin:atom_codes/2 + builtin:atom_concat/3 + applicationModel:localizeNodeName/3 + builtin:number/1 + builtin:number_codes/2 + solsticeUtility:subtermMember/2 + solsticeUtility:subtermSelect/4 + called from: + applicationModel:assertTermAndReadNext/5 + applicationModel:localizeNodeName/3 + +applicationModel:nlWrite/2 applicationModel.pro:283:286 + subgoals: + builtin:nl/1 + builtin:write/2 + builtin:writeq/2 + called from: + applicationModel:writeApplicationModelToFile/0 + +applicationModel:refreshModuleInApplicationModelForCurrentProject/1 applicationModel.pro:78:110 + subgoals: + applicationModel:artifactExtension/1 + applicationModel:assertModuleIntoApplicationModel/4 + builtin:atom_concat/3 + applicationModel:retractModuleFromApplicationModel/2 + sessionManager:getCFMPath/1 + sessionManager:getCurrentProject/1 + sessionManager:getDFMPath/1 + no callers + +applicationModel:retractModuleFromApplicationModel/2 applicationModel.pro:61:78 + subgoals: + builtin:atom_concat/3 + log:log/2 + builtin:retractall/1 + called from: + applicationModel:refreshModuleInApplicationModelForCurrentProject/1 + applicationModel:retractModuleFromApplicationModelForCurrentProject/1 + +applicationModel:retractModuleFromApplicationModelForCurrentProject/1 applicationModel.pro:50:61 + subgoals: + applicationModel:retractModuleFromApplicationModel/2 + sessionManager:getCurrentProject/1 + no callers + +applicationModel:retrieveRepresentation/2 applicationModel.pro:161:172 + subgoals: + builtin: = /2 + builtin:close/1 + applicationModel:loadRepresentation/2 + builtin:open/3 + builtin:sub_atom/5 + called from: + applicationModel:loadApplicationModelForCurrentProject/0 + +applicationModel:writeApplicationModelToFile/0 applicationModel.pro:243:283 + subgoals: + builtin:append/3 + builtin:atom_concat/3 + builtin:close/1 + builtin:findall/3 + log:log/2 + applicationModel:nlWrite/2 + builtin:open/3 + builtin:sort/2 + sessionManager:getApplicationModelPath/1 + sessionManager:getCurrentProject/1 + called from: + applicationModel:generateApplicationModelForCurrentProject/0 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/backSubstituter.pro + +backSubstituter:mathSmash/2 backSubstituter.pro:33:41 + subgoals: + builtin:do/2 + called from: + logicTranslationUtilities:getConsolidatedLoopBodyConstraints/3 + +backSubstituter:simplifyArithmeticExpr/2 backSubstituter.pro:41:51 + subgoals: + builtin: = /2 + builtin:is/2 + builtin:number/1 + backSubstituter:simplifyArithmeticExpr/2 + solsticeUtility:subtermMember/2 + solsticeUtility:subtermSelect/4 + called from: + backSubstituter:simplifyArithmeticExpr/2 + +backSubstituter:subIt/2 backSubstituter.pro:7:33 + subgoals: + builtin:do/2 + builtin:if/3 + called from: + logicTranslationUtilities:getConsolidatedLoopBodyConstraints/3 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro + +cfmStep:cfmNodeStep/4 CfmStep.pro:35:55 + subgoals: + builtin: = /2 + semantics:executeNode/5 + dfmStep:findFunctions/3 + cfmStep:findNextNode/3 + semantics:resolveNode/4 + user:representation/2 + called from: + cfmStep:cfmStep/4 + +cfmStep:cfmStep/4 CfmStep.pro:14:30 + subgoals: + builtin: = /2 + cfmStep:cfmNodeStep/4 + semantics:functionStep/4 + no callers + +cfmStep:findNextNode/3 CfmStep.pro:71:81 + subgoals: + builtin: = /2 + builtin:member/2 + user:representation/2 + called from: + cfmStep:cfmNodeStep/4 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro + +cfm_mappings:cond/2 cfm_mappings.pro:116:118 + subgoals: + builtin: =.. /2 + no callers + +cfm_mappings:cond2/3 cfm_mappings.pro:119:122 + subgoals: + builtin: =.. /2 + no callers + +cfm_mappings:initialNode/2 cfm_mappings.pro:49:54 + subgoals: + builtin:,/2 + no callers + +cfm_mappings:initialNodes/3 cfm_mappings.pro:38:45 + subgoals: + builtin: =.. /2 + undefined:cond2/2 + builtin:findall/3 + cfm_mappings:recursiveTermSearch/2 + cfm_mappings:recursiveTermSearch/3 + no callers + +cfm_mappings:lineNumber/3 cfm_mappings.pro:95:101 + subgoals: + undefined:lineGet1/3 + undefined:lineGet2/3 + no callers + +cfm_mappings:methodName/3 cfm_mappings.pro:109:114 + subgoals: + undefined:methodFind/3 + undefined:piFuncFind/3 + no callers + +cfm_mappings:phiByNode/3 cfm_mappings.pro:62:69 + subgoals: + builtin:,/2 + no callers + +cfm_mappings:phiByVar/3 cfm_mappings.pro:69:77 + subgoals: + builtin:,/2 + no callers + +cfm_mappings:recursiveTermSearch/2 cfm_mappings.pro:128:131 + subgoals: + builtin: = /2 + cfm_mappings:recursiveTermSearch/2 + called from: + cfm_mappings:initialNodes/3 + cfm_mappings:recursiveTermSearch/2 + +cfm_mappings:recursiveTermSearch/3 cfm_mappings.pro:122:127 + subgoals: + builtin: =.. /2 + cfm_mappings:recursiveTermSearch/3 + called from: + cfm_mappings:initialNodes/3 + cfm_mappings:recursiveTermSearch/3 + +cfm_mappings:stmtType/3 cfm_mappings.pro:33:38 + subgoals: + builtin:,/2 + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro + +dfmCreate:assertDominance/3 dfmCreate.pro:520:528 + subgoals: + builtin:,/2 + no callers + +dfmCreate:createDependencies/4 dfmCreate.pro:125:145 + subgoals: + builtin:,/2 + builtin: = /2 + builtin:(\+)/1 + lists:append/2 + builtin:assert/1 + builtin:atom_concat/3 + libraryModule:buildLibFunction/4 + dfmCreate:createDependencies/4 + dfmCreate:createMultiDependencies/4 + dfmCreate:create_function_io_dependencies/6 + builtin:do/2 + dfmCreate:extractRHS/2 + dfmCreate:getRidOfPhiVars/3 + builtin:if/3 + lists:is_list/1 + log:log/2 + dfmCreate:mapIfPhiFunction/3 + undefined:mapInputDependencies/1 + dfmCreate:mapInputDependencies/3 + dfmCreate:mapOutputDependencies/3 + solsticeUtility:structToList/2 + dfmCreate:varsAexp/2 + called from: + dfmCreate:createDependencies/4 + +dfmCreate:createMultiDependencies/4 dfmCreate.pro:501:506 + subgoals: + builtin:assert/1 + dfmCreate:mapInputDependencies/3 + called from: + dfmCreate:createDependencies/4 + +dfmCreate:create_function_io_dependencies/6 dfmCreate.pro:506:520 + subgoals: + builtin:append/3 + log:log/2 + dfmCreate:mapInputDependencies/3 + dfmCreate:mapOutputDependencies/3 + dfmCreate:varsAexp/2 + called from: + dfmCreate:createDependencies/4 + +dfmCreate:dfmCreate/2 dfmCreate.pro:16:34 + subgoals: + builtin:,/2 + dfmCreate:dfmCreateDeclarations/2 + dfmCreate:dfmCreateSignature/2 + dfmCreate:reduceToPredGateNodes/1 + dfmCreate:unRollWhileLoops/2 + called from: + executeMiniProgram:createDfm/2 + +dfmCreate:dfmCreateDeclarations/2 dfmCreate.pro:105:120 + subgoals: + builtin:,/2 + called from: + dfmCreate:dfmCreate/2 + +dfmCreate:dfmCreateDomainName/2 dfmCreate.pro:51:63 + subgoals: + builtin:atom_concat/3 + called from: + executeMiniProgram:createDfm/2 + +dfmCreate:dfmCreateSignature/2 dfmCreate.pro:63:83 + subgoals: + builtin:,/2 + called from: + dfmCreate:dfmCreate/2 + +dfmCreate:extractRHS/2 dfmCreate.pro:713:717 + subgoals: + dfmCreate:extractRHS/2 + called from: + dfmCreate:createDependencies/4 + dfmCreate:extractRHS/2 + +dfmCreate:getPhiLeftSides/2 dfmCreate.pro:681:684 + subgoals: + dfmCreate:getPhiLeftSides/3 + called from: + dfmCreate:getRidOfPhiVars/3 + +dfmCreate:getPhiLeftSides/3 dfmCreate.pro:684:686 + subgoals: + builtin: = /2 + dfmCreate:getPhiLeftSides/3 + called from: + dfmCreate:getPhiLeftSides/2 + dfmCreate:getPhiLeftSides/3 + +dfmCreate:getRidOfPhiVars/3 dfmCreate.pro:675:681 + subgoals: + dfmCreate:getPhiLeftSides/2 + undefined:subtract/3 + called from: + dfmCreate:createDependencies/4 + +dfmCreate:mapIfPhiFunction/3 dfmCreate.pro:572:590 + subgoals: + builtin: = /2 + builtin:assert/1 + dfmCreate:mapIfPhiFunction/3 + called from: + dfmCreate:createDependencies/4 + dfmCreate:mapIfPhiFunction/3 + +dfmCreate:mapIfPredDominance/4 dfmCreate.pro:529:552 + subgoals: + builtin:,/2 + no callers + +dfmCreate:mapInputDependencies/3 dfmCreate.pro:621:637 + subgoals: + builtin:assert/1 + builtin:atom/1 + lists:is_list/1 + dfmCreate:mapInputDependencies/3 + builtin:number/1 + called from: + dfmCreate:createDependencies/4 + dfmCreate:createMultiDependencies/4 + dfmCreate:create_function_io_dependencies/6 + dfmCreate:mapInputDependencies/3 + +dfmCreate:mapOutputDependencies/3 dfmCreate.pro:648:651 + subgoals: + builtin:assert/1 + builtin:atom/1 + lists:is_list/1 + dfmCreate:mapOutputDependencies/3 + builtin:number/1 + called from: + dfmCreate:createDependencies/4 + dfmCreate:create_function_io_dependencies/6 + dfmCreate:mapOutputDependencies/3 + +dfmCreate:mapPredDepedencies/3 dfmCreate.pro:660:675 + subgoals: + builtin:assert/1 + no callers + +dfmCreate:mapWhilePhiFunction/3 dfmCreate.pro:552:571 + subgoals: + builtin: = /2 + builtin:assert/1 + dfmCreate:mapWhilePhiFunction/3 + called from: + dfmCreate:mapWhilePhiFunction/3 + +dfmCreate:recursionVar/2 dynamic dfmCreate.pro:0:0 + not modified + no subgoals + no callers + +dfmCreate:reduceToPredGateNodes/1 dfmCreate.pro:591:604 + subgoals: + builtin:findall/3 + dfmCreate:retractPredNonGateNodes/2 + called from: + dfmCreate:dfmCreate/2 + +dfmCreate:retractNonGate/3 dfmCreate.pro:617:621 + subgoals: + builtin:retract/1 + no callers + +dfmCreate:retractPredNonGateNodes/2 dfmCreate.pro:604:617 + subgoals: + builtin:findall/3 + undefined:list_to_ord_set/2 + called from: + dfmCreate:reduceToPredGateNodes/1 + +dfmCreate:unRollWhileLoops/2 dfmCreate.pro:83:103 + subgoals: + builtin:,/2 + called from: + dfmCreate:dfmCreate/2 + +dfmCreate:varsAexp/2 dfmCreate.pro:690:712 + subgoals: + builtin: = /2 + solsticeUtility:subtermSelect/4 + dfmCreate:varsAexp/2 + called from: + dfmCreate:createDependencies/4 + dfmCreate:create_function_io_dependencies/6 + dfmCreate:varsAexp/2 + libraryModule:libCreatePrintf/4 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro + +dfmInterface:arc_to_pair/4 dfmInterface.pro:617:623 + subgoals: + builtin:,/2 + builtin: = /2 + no callers + +dfmInterface:blocking/1 dynamic dfmInterface.pro:0:0 + not modified + no subgoals + no callers + +dfmInterface:breakpoint/0 dfmInterface.pro:15:18 + no subgoals + called from: + dfmInterface:buildFromTerminalNode/4 + dfmInterface:traverseExternalCall/7 + +dfmInterface:buildEdges/5 dfmInterface.pro:123:129 + subgoals: + builtin:,/2 + undefined:isRead/3 + dfmInterface:isScreen/4 + dfmInterface:isWrite/3 + dfmInterface:traverseRead/5 + dfmInterface:traverseScreen/6 + dfmInterface:traverseWrite/5 + called from: + dfmInterface:buildFromTerminalNode/4 + +dfmInterface:buildFromTerminalNode/4 dfmInterface.pro:45:61 + subgoals: + dfmInterface:breakpoint/0 + dfmInterface:buildEdges/5 + builtin:findall/3 + dfmInterface:getNewStack/5 + dfmInterface:getPi/2 + dfmInterface:isExternalCall/6 + dfmInterface:isFunction/5 + undefined:isIfFunction/7 + dfmInterface:isLoop/3 + builtin:nl/0 + lists:remove_dups/2 + dfmInterface:traverseExternalCall/7 + dfmInterface:traverseFunction/7 + dfmInterface:traverseIfFunction/7 + builtin:write/1 + called from: + dfmInterface:buildTraversalGraph/3 + dfmInterface:traverseExternalCall/7 + dfmInterface:traverseFunction/7 + dfmInterface:traverseIfFunction/7 + dfmInterface:traverseRead/5 + +dfmInterface:buildTraversalGraph/3 dfmInterface.pro:18:24 + subgoals: + dfmInterface:buildFromTerminalNode/4 + dfmInterface:getTerminalNodes/3 + builtin:member/2 + dfmInterface:replaceNextVar/2 + no callers + +dfmInterface:contains/3 dfmInterface.pro:594:599 + subgoals: + builtin: = /2 + no callers + +dfmInterface:contiune_or_abort/3 dfmInterface.pro:544:552 + subgoals: + lists:include/3 + dfmInterface:remove_tag/2 + called from: + dfmInterface:full_traverse_helper/7 + +dfmInterface:createExternalCallEntryArcs/7 dfmInterface.pro:321:333 + subgoals: + builtin:,/2 + called from: + dfmInterface:traverseExternalCall/7 + +dfmInterface:createExternalCallExitArcs/7 dfmInterface.pro:312:321 + subgoals: + builtin:,/2 + no callers + +dfmInterface:createFuncEntryArcs/7 dfmInterface.pro:294:310 + subgoals: + builtin:,/2 + called from: + dfmInterface:createIfFuncEntryArcs/7 + dfmInterface:traverseFunction/7 + +dfmInterface:createFuncExitArcs/7 dfmInterface.pro:274:285 + subgoals: + builtin:,/2 + no callers + +dfmInterface:createIfFuncEntryArcs/7 dfmInterface.pro:345:348 + subgoals: + dfmInterface:createFuncEntryArcs/7 + called from: + dfmInterface:traverseIfFunction/7 + +dfmInterface:createIfFuncExitArcs/7 dfmInterface.pro:335:345 + subgoals: + builtin:,/2 + called from: + dfmInterface:traverseIfFunction/7 + +dfmInterface:dfm/2 dynamic dfmInterface.pro:0:0 + not modified + no subgoals + no callers + +dfmInterface:filter_arcs/2 dfmInterface.pro:587:594 + subgoals: + lists:convlist/3 + dfmInterface:get_stack/2 + builtin:member/2 + lists:remove_dups/2 + called from: + dfmInterface:step/6 + +dfmInterface:find_an_arc/5 dfmInterface.pro:604:609 + subgoals: + builtin:,/2 + no callers + +dfmInterface:formatDfmStmt/2 dfmInterface.pro:682:687 + subgoals: + builtin:,/2 + no callers + +dfmInterface:formatEdges/2 dfmInterface.pro:673:681 + subgoals: + builtin:,/2 + no callers + +dfmInterface:formatFacts/2 dfmInterface.pro:642:673 + subgoals: + dfmInterface:formatInput/2 + dfmInterface:formatOutput/2 + no callers + +dfmInterface:formatInput/2 dfmInterface.pro:688:694 + subgoals: + builtin:,/2 + called from: + dfmInterface:formatFacts/2 + +dfmInterface:formatOutput/2 dfmInterface.pro:695:701 + subgoals: + builtin:,/2 + called from: + dfmInterface:formatFacts/2 + +dfmInterface:formatPiFunc/2 dfmInterface.pro:702:707 + subgoals: + builtin:,/2 + no callers + +dfmInterface:formatPiFuncSignature/2 dfmInterface.pro:714:719 + subgoals: + builtin:,/2 + no callers + +dfmInterface:formatPiSource/2 dfmInterface.pro:708:713 + subgoals: + builtin:,/2 + no callers + +dfmInterface:full_traverse/7 dfmInterface.pro:469:511 + subgoals: + builtin: = /2 + dfmInterface:full_traverse_helper/7 + no callers + +dfmInterface:full_traverse_helper/7 dfmInterface.pro:511:527 + subgoals: + builtin: = /2 + lists:append/2 + builtin:append/3 + dfmInterface:contiune_or_abort/3 + lists:convlist/3 + dfmInterface:full_traverse_helper/7 + builtin:member/2 + dfmInterface:step/6 + dfmInterface:stop_on_functors/4 + called from: + dfmInterface:full_traverse/7 + dfmInterface:full_traverse_helper/7 + +dfmInterface:getAllDownStreamPi/5 dfmInterface.pro:444:447 + subgoals: + builtin:findall/3 + no callers + +dfmInterface:getAllUpstreamPi/5 dfmInterface.pro:439:444 + subgoals: + builtin:findall/3 + no callers + +dfmInterface:getExternalCallInput/5 dfmInterface.pro:421:428 + subgoals: + builtin:,/2 + no callers + +dfmInterface:getFunctionInput/5 dfmInterface.pro:394:400 + subgoals: + builtin:,/2 + no callers + +dfmInterface:getNewStack/5 dfmInterface.pro:436:439 + no subgoals + called from: + dfmInterface:buildFromTerminalNode/4 + +dfmInterface:getPi/2 dfmInterface.pro:432:435 + no subgoals + called from: + dfmInterface:buildFromTerminalNode/4 + +dfmInterface:getTerminalNodes/3 dfmInterface.pro:35:45 + subgoals: + builtin:findall/3 + called from: + dfmInterface:buildTraversalGraph/3 + +dfmInterface:get_node_var_pairs/4 dfmInterface.pro:609:617 + subgoals: + builtin:findall/3 + called from: + dfmInterface:step/6 + +dfmInterface:get_stack/2 dfmInterface.pro:599:604 + subgoals: + builtin: = /2 + called from: + dfmInterface:filter_arcs/2 + +dfmInterface:get_terminal_pair/4 dfmInterface.pro:557:568 + subgoals: + builtin:,/2 + builtin: = /2 + no callers + +dfmInterface:isExternalCall/6 dfmInterface.pro:382:386 + subgoals: + builtin:,/2 + called from: + dfmInterface:buildFromTerminalNode/4 + +dfmInterface:isFunction/5 dfmInterface.pro:352:357 + subgoals: + builtin:,/2 + called from: + dfmInterface:buildFromTerminalNode/4 + +dfmInterface:isLoop/3 dfmInterface.pro:388:393 + subgoals: + builtin:,/2 + called from: + dfmInterface:buildFromTerminalNode/4 + +dfmInterface:isScreen/4 dfmInterface.pro:361:366 + no subgoals + called from: + dfmInterface:buildEdges/5 + +dfmInterface:isWrite/3 dfmInterface.pro:379:382 + subgoals: + builtin:,/2 + called from: + dfmInterface:buildEdges/5 + +dfmInterface:is_abort/1 dfmInterface.pro:554:555 + no subgoals + no callers + +dfmInterface:is_continue/1 dfmInterface.pro:552:554 + no subgoals + no callers + +dfmInterface:remove_tag/2 dfmInterface.pro:555:557 + subgoals: + builtin: =.. /2 + called from: + dfmInterface:contiune_or_abort/3 + +dfmInterface:replaceNextVar/2 dfmInterface.pro:27:34 + subgoals: + builtin:assert/1 + builtin:retract/1 + called from: + dfmInterface:buildTraversalGraph/3 + +dfmInterface:step/6 dfmInterface.pro:568:580 + subgoals: + builtin: = /2 + builtin:(\+)/1 + dfmInterface:filter_arcs/2 + builtin:findall/3 + dfmInterface:get_node_var_pairs/4 + called from: + dfmInterface:full_traverse_helper/7 + +dfmInterface:stop_on_functors/4 dfmInterface.pro:531:542 + subgoals: + builtin: = /2 + builtin: =.. /2 + builtin:append/3 + builtin:member/2 + user:call/1 + called from: + dfmInterface:full_traverse_helper/7 + +dfmInterface:traverseExternalCall/7 dfmInterface.pro:164:173 + subgoals: + dfmInterface:breakpoint/0 + dfmInterface:buildFromTerminalNode/4 + dfmInterface:createExternalCallEntryArcs/7 + builtin:findall/3 + builtin:sort/2 + called from: + dfmInterface:buildFromTerminalNode/4 + +dfmInterface:traverseFunction/7 dfmInterface.pro:157:164 + subgoals: + dfmInterface:buildFromTerminalNode/4 + dfmInterface:createFuncEntryArcs/7 + builtin:findall/3 + builtin:sort/2 + called from: + dfmInterface:buildFromTerminalNode/4 + +dfmInterface:traverseIfFunction/7 dfmInterface.pro:173:179 + subgoals: + dfmInterface:buildFromTerminalNode/4 + dfmInterface:createIfFuncEntryArcs/7 + dfmInterface:createIfFuncExitArcs/7 + called from: + dfmInterface:buildFromTerminalNode/4 + +dfmInterface:traverseRead/5 dfmInterface.pro:218:241 + subgoals: + builtin: = /2 + dfmInterface:buildFromTerminalNode/4 + builtin:do/2 + builtin:findall/3 + builtin:if/3 + called from: + dfmInterface:buildEdges/5 + +dfmInterface:traverseScreen/6 dfmInterface.pro:179:192 + subgoals: + builtin:,/2 + builtin: = /2 + builtin:if/3 + called from: + dfmInterface:buildEdges/5 + +dfmInterface:traverseWrite/5 dfmInterface.pro:262:274 + subgoals: + builtin:,/2 + builtin: = /2 + builtin:if/3 + called from: + dfmInterface:buildEdges/5 + +dfmInterface:walkBackward/6 dfmInterface.pro:447:460 + subgoals: + builtin:,/2 + builtin:(\+)/1 + lists:is_list/1 + builtin:member/2 + called from: + dfmInterface:walkBackwardHelper/6 + +dfmInterface:walkBackwardHelper/6 dfmInterface.pro:466:467 + subgoals: + dfmInterface:walkBackward/6 + no callers + +dfmInterface:walkForward/6 dfmInterface.pro:623:633 + subgoals: + builtin:,/2 + builtin:(\+)/1 + lists:is_list/1 + builtin:member/2 + called from: + dfmInterface:walkForwardHelper/6 + +dfmInterface:walkForwardHelper/6 dfmInterface.pro:639:640 + subgoals: + dfmInterface:walkForward/6 + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro + +dfmStep:createInitialStep/3 DfmStep.pro:101:104 + subgoals: + builtin: = /2 + called from: + dfmStep:findDependencies/4 + +dfmStep:dfmNodeStep/4 DfmStep.pro:36:43 + subgoals: + builtin: = /2 + lists:append/2 + semantics:executeNode/5 + dfmStep:findDependencies/4 + dfmStep:findFunctions/3 + semantics:resolveNode/4 + user:representation/2 + called from: + dfmStep:dfmStep/4 + +dfmStep:dfmStep/4 DfmStep.pro:14:31 + subgoals: + builtin: = /2 + dfmStep:dfmNodeStep/4 + semantics:functionStep/4 + no callers + +dfmStep:findAFunction/3 DfmStep.pro:64:79 + subgoals: + builtin: = /2 + builtin:(\+)/1 + builtin:member/2 + solsticeUtility:subtermMember/2 + user:representation/2 + no callers + +dfmStep:findDependencies/4 DfmStep.pro:90:95 + subgoals: + dfmStep:createInitialStep/3 + builtin:findall/3 + user:representation/2 + called from: + dfmStep:dfmNodeStep/4 + +dfmStep:findFunctions/3 DfmStep.pro:58:64 + subgoals: + lists:append/2 + builtin:findall/3 + user:representation/2 + called from: + cfmStep:cfmNodeStep/4 + dfmStep:dfmNodeStep/4 + +dfmStep:necessary/4 DfmStep.pro:95:101 + subgoals: + builtin:(\+)/1 + builtin: \= /2 + builtin:member/2 + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro + +dfmTraversal:arg_generator/4 dfmTraversal.pro:1428:1433 + subgoals: + builtin:member/2 + called from: + dfmTraversal:make_into_args/4 + +dfmTraversal:assertDfmStmtFacts/1 dfmTraversal.pro:1524:1529 + subgoals: + builtin:,/2 + called from: + dfmTraversal:convertFactsToNewFormat/1 + +dfmTraversal:assertExternalCalls/1 dfmTraversal.pro:91:107 + subgoals: + builtin:findall/3 + no callers + +dfmTraversal:assertExternalFuncInput/1 dfmTraversal.pro:1588:1602 + subgoals: + builtin:,/2 + builtin:assert/1 + called from: + dfmTraversal:convertFactsToNewFormat/1 + +dfmTraversal:assertForwardArcOptimizationFacts/1 dfmTraversal.pro:963:971 + subgoals: + builtin:,/2 + no callers + +dfmTraversal:assertFuncInput/1 dfmTraversal.pro:1554:1587 + subgoals: + builtin:;/2 + builtin:append/3 + builtin:assert/1 + called from: + dfmTraversal:convertFactsToNewFormat/1 + +dfmTraversal:assertInputDependencyFacts/1 dfmTraversal.pro:1530:1535 + subgoals: + builtin:,/2 + called from: + dfmTraversal:convertFactsToNewFormat/1 + +dfmTraversal:assertInputDependencyInverseFacts/1 dfmTraversal.pro:1536:1541 + subgoals: + builtin:,/2 + called from: + dfmTraversal:convertFactsToNewFormat/1 + +dfmTraversal:assertOutputDependencyFacts/1 dfmTraversal.pro:1542:1547 + subgoals: + builtin:,/2 + called from: + dfmTraversal:convertFactsToNewFormat/1 + +dfmTraversal:assertOutputDependencyInverseFacts/1 dfmTraversal.pro:1548:1553 + subgoals: + builtin:,/2 + called from: + dfmTraversal:convertFactsToNewFormat/1 + +dfmTraversal:assert_arcs/2 dfmTraversal.pro:881:885 + subgoals: + builtin:assert/1 + dfmTraversal:assert_arcs/2 + called from: + dfmTraversal:assert_arcs/2 + +dfmTraversal:blocking/2 dynamic dfmTraversal.pro:0:0 + modified in: + dfmTraversal:check_if_already_found/2 + no subgoals + called from: + dfmTraversal:check_if_already_found/2 + +dfmTraversal:buildForwardArcs/1 dfmTraversal.pro:972:988 + subgoals: + builtin:,/2 + dfmTraversal:validateForwardArcs/1 + no callers + +dfmTraversal:buildNextStack/5 dfmTraversal.pro:958:961 + subgoals: + builtin:(\+)/1 + builtin:ground/1 + no callers + +dfmTraversal:build_dfm_traversal_graph/2 dfmTraversal.pro:30:91 + subgoals: + builtin:atom_concat/3 + sessionManager:getArcPath/1 + builtin:if/3 + log:log/2 + called from: + applicationFunction:setUpAppFnProject/1 + +dfmTraversal:check_if_already_found/2 dfmTraversal.pro:541:546 + subgoals: + dfmTraversal:blocking/2 + dfmTraversal:check_if_already_found/2 + assert-dfmTraversal:blocking/2 + called from: + dfmTraversal:check_if_already_found/2 + dfmTraversal:find_all_arcs/4 + +dfmTraversal:cleanupDomain/1 dfmTraversal.pro:890:904 + subgoals: + builtin:abolish/1 + no callers + +dfmTraversal:convertAtomToTerm/2 dfmTraversal.pro:1508:1514 + subgoals: + builtin:append/3 + builtin:atom_codes/2 + undefined:read_term_from_codes/3 + no callers + +dfmTraversal:convertFactsToNewFormat/1 dfmTraversal.pro:1514:1524 + subgoals: + dfmTraversal:assertDfmStmtFacts/1 + dfmTraversal:assertExternalFuncInput/1 + dfmTraversal:assertFuncInput/1 + dfmTraversal:assertInputDependencyFacts/1 + dfmTraversal:assertInputDependencyInverseFacts/1 + dfmTraversal:assertOutputDependencyFacts/1 + dfmTraversal:assertOutputDependencyInverseFacts/1 + no callers + +dfmTraversal:convertNodesToAtoms/1 dfmTraversal.pro:1474:1494 + subgoals: + builtin:,/2 + no callers + +dfmTraversal:convertTermToAtom/2 dfmTraversal.pro:1502:1508 + subgoals: + builtin:atom_codes/2 + undefined:write_to_codes/2 + called from: + loopRewriter:createTraversalNodes/8 + +dfmTraversal:externalCall/2 dynamic dfmTraversal.pro:0:0 + not modified + no subgoals + no callers + +dfmTraversal:extract/3 dfmTraversal.pro:1412:1417 + subgoals: + dfmTraversal:extract/5 + called from: + dfmTraversal:generate_next_edge/4 + dfmTraversal:generate_next_forward_edge/4 + +dfmTraversal:extract/5 dfmTraversal.pro:1417:1419 + subgoals: + dfmTraversal:extract/5 + called from: + dfmTraversal:extract/3 + dfmTraversal:extract/5 + +dfmTraversal:extractBooleanVariables/2 dfmTraversal.pro:613:617 + subgoals: + builtin:findall/3 + no callers + +dfmTraversal:extractPhiVariables/3 dfmTraversal.pro:607:613 + subgoals: + builtin: = /2 + builtin:member/2 + called from: + dfmTraversal:generate_next_arc/3 + +dfmTraversal:find_a_forward_arc/5 dfmTraversal.pro:1227:1236 + subgoals: + builtin:,/2 + no callers + +dfmTraversal:find_a_forward_pair/3 dfmTraversal.pro:1356:1367 + subgoals: + builtin: = /2 + builtin:(\+)/1 + builtin:atom/1 + builtin:call/4 + dfmTraversal:get_module_from_nodeID/2 + builtin:member/2 + builtin:number/1 + dfmTraversal:visited/1 + assert-dfmTraversal:visited/1 + no callers + +dfmTraversal:find_a_pair/3 dfmTraversal.pro:1300:1322 + subgoals: + builtin: = /2 + builtin:(\+)/1 + builtin:atom/1 + builtin:call/4 + dfmTraversal:get_module_from_nodeID/2 + builtin:member/2 + builtin:number/1 + dfmTraversal:visited/1 + assert-dfmTraversal:visited/1 + no callers + +dfmTraversal:find_all_arcs/4 dfmTraversal.pro:107:109 + subgoals: + lists:append/2 + builtin:append/3 + dfmTraversal:check_if_already_found/2 + lists:convlist/3 + dfmTraversal:find_all_arcs/4 + dfmTraversal:genArc/3 + builtin:sort/2 + called from: + dfmTraversal:find_all_arcs/4 + +dfmTraversal:find_all_downstream_nodes_inclusive/4 dfmTraversal.pro:1107:1117 + subgoals: + builtin:do/2 + solsticeUtility:flattenList/2 + dfmTraversal:getForwardNodeSet/2 + undefined:list_to_set/2 + no callers + +dfmTraversal:find_all_upstream_nodes_inclusive/4 dfmTraversal.pro:1089:1107 + subgoals: + builtin:do/2 + solsticeUtility:flattenList/2 + dfmTraversal:getNodeSet/2 + undefined:list_to_set/2 + called from: + logicTranslator:constraintsGuaranteeStmtExecuted/6 + logicTranslator:stmtExecutionAndConstraintsIsPossible/6 + logicTranslator:stmtExecutionGuaranteesConstraints/6 + +dfmTraversal:find_an_arc/5 dfmTraversal.pro:1213:1227 + subgoals: + builtin:,/2 + no callers + +dfmTraversal:forward_step/8 dfmTraversal.pro:1204:1213 + subgoals: + builtin:findall/3 + dfmTraversal:generate_next_forward_edge/4 + lists:remove_dups/2 + no callers + +dfmTraversal:full_traverse/6 dfmTraversal.pro:1018:1064 + subgoals: + builtin: = /2 + builtin:(\+)/1 + builtin:do/2 + solsticeUtility:flattenList/2 + dfmTraversal:full_traverse_helper/8 + sessionManager:getCurrentProject/1 + dfmTraversal:get_module/3 + dfmTraversal:get_module_from_nodeID/2 + builtin:ground/1 + builtin:if/3 + dfmTraversal:removeBrackets/2 + builtin:retractall/1 + no callers + +dfmTraversal:full_traverse_helper/8 dfmTraversal.pro:1135:1180 + subgoals: + lists:append/2 + dfmTraversal:full_traverse_helper/8 + builtin:if/3 + dfmTraversal:make_into_args/4 + called from: + dfmTraversal:full_traverse/6 + dfmTraversal:full_traverse_helper/8 + +dfmTraversal:genArc/3 dfmTraversal.pro:120:124 + subgoals: + dfmTraversal:generate_next_arc/3 + called from: + dfmTraversal:find_all_arcs/4 + +dfmTraversal:generate_forward_pair/3 dfmTraversal.pro:1288:1296 + subgoals: + builtin: = /2 + builtin: \= /2 + builtin:findall/3 + called from: + dfmTraversal:generate_next_forward_edge/4 + +dfmTraversal:generate_next_arc/3 dfmTraversal.pro:124:137 + subgoals: + builtin:,/2 + builtin: = /2 + builtin:(\+)/1 + builtin: \== /2 + builtin:atom/1 + dfmTraversal:extractPhiVariables/3 + dfmTraversal:getExternalFunctionInformation/8 + dfmTraversal:getExternalFunctionInput/7 + dfmTraversal:getFunctionInformation/8 + dfmTraversal:getFunctionInput/6 + dfmTraversal:getStack/5 + builtin:ground/1 + dfmTraversal:isExternalGlobalFunction/6 + dfmTraversal:isGlobalFunction/6 + undefined:isIfFunction/5 + undefined:isLoop/5 + lists:nth0/3 + builtin:number/1 + dfmTraversal:popStack/2 + builtin:throw/1 + called from: + dfmTraversal:genArc/3 + +dfmTraversal:generate_next_edge/4 dfmTraversal.pro:1236:1269 + subgoals: + lists:append/2 + dfmTraversal:extract/3 + dfmTraversal:generate_pair/3 + called from: + dfmTraversal:step/8 + +dfmTraversal:generate_next_forward_edge/4 dfmTraversal.pro:1281:1288 + subgoals: + lists:append/2 + dfmTraversal:extract/3 + dfmTraversal:generate_forward_pair/3 + called from: + dfmTraversal:forward_step/8 + +dfmTraversal:generate_next_pairs/2 dfmTraversal.pro:461:464 + subgoals: + builtin:do/2 + no callers + +dfmTraversal:generate_pair/3 dfmTraversal.pro:1269:1277 + subgoals: + builtin: = /2 + builtin: \= /2 + builtin:findall/3 + called from: + dfmTraversal:generate_next_edge/4 + +dfmTraversal:getEnclosingControlStructurePairs/3 dfmTraversal.pro:466:483 + subgoals: + builtin:,/2 + builtin: = /2 + no callers + +dfmTraversal:getExternalFunctionInformation/8 dfmTraversal.pro:592:601 + subgoals: + builtin:,/2 + builtin: = /2 + called from: + dfmTraversal:generate_next_arc/3 + +dfmTraversal:getExternalFunctionInput/7 dfmTraversal.pro:863:868 + subgoals: + builtin:,/2 + called from: + dfmTraversal:generate_next_arc/3 + +dfmTraversal:getForwardNodeSet/2 dfmTraversal.pro:1117:1126 + subgoals: + builtin:findall/3 + builtin:sort/2 + called from: + dfmTraversal:find_all_downstream_nodes_inclusive/4 + +dfmTraversal:getFuncNode/6 dfmTraversal.pro:935:938 + subgoals: + builtin:,/2 + no callers + +dfmTraversal:getFunctionInformation/8 dfmTraversal.pro:554:563 + subgoals: + builtin:,/2 + builtin: = /2 + called from: + dfmTraversal:generate_next_arc/3 + +dfmTraversal:getFunctionInput/6 dfmTraversal.pro:807:815 + subgoals: + builtin:,/2 + called from: + dfmTraversal:generate_next_arc/3 + +dfmTraversal:getNodeSet/2 dfmTraversal.pro:1126:1135 + subgoals: + builtin:findall/3 + builtin:sort/2 + called from: + dfmTraversal:find_all_upstream_nodes_inclusive/4 + +dfmTraversal:getStack/5 dfmTraversal.pro:601:604 + subgoals: + builtin:ground/1 + called from: + dfmTraversal:generate_next_arc/3 + +dfmTraversal:get_module/3 dfmTraversal.pro:1433:1442 + subgoals: + lists:append/2 + builtin:atom/1 + builtin:atom_codes/2 + called from: + dfmTraversal:full_traverse/6 + +dfmTraversal:get_module_from_nodeID/2 dfmTraversal.pro:1401:1410 + subgoals: + builtin: = /2 + lists:append/2 + builtin:atom/1 + builtin:atom_codes/2 + called from: + dfmTraversal:find_a_forward_pair/3 + dfmTraversal:find_a_pair/3 + dfmTraversal:full_traverse/6 + feasibilityService:whileLoopsExist/2 + feasibilityService:whileNodesExist/4 + logicTranslator:getWhileBodyNodes/4 + logicTranslator:processNonWhileNodes/4 + logicTranslator:processWhileNodes/4 + +dfmTraversal:get_terminal_nodes/3 dfmTraversal.pro:904:927 + subgoals: + builtin:findall/3 + builtin:sort/2 + no callers + +dfmTraversal:isDateTime/3 dfmTraversal.pro:789:800 + subgoals: + builtin:;/2 + called from: + dfmTraversal:isStraightLine/3 + +dfmTraversal:isExternalGlobalFunction/6 dfmTraversal.pro:696:702 + subgoals: + builtin:,/2 + called from: + dfmTraversal:generate_next_arc/3 + +dfmTraversal:isGlobalFunction/6 dfmTraversal.pro:673:678 + subgoals: + builtin:,/2 + called from: + dfmTraversal:generate_next_arc/3 + +dfmTraversal:isNodeInMainWithUnreadOutput/3 dfmTraversal.pro:800:807 + subgoals: + builtin:,/2 + no callers + +dfmTraversal:isStraightLine/3 dfmTraversal.pro:617:624 + subgoals: + undefined:isClose/3 + undefined:isDB2CloseCursor/3 + undefined:isDB2DeclareCursor/3 + undefined:isDB2Delete/3 + undefined:isDB2Fetch/3 + undefined:isDB2Insert/3 + undefined:isDB2OpenCursor/3 + undefined:isDB2Select/3 + undefined:isDB2Update/3 + dfmTraversal:isDateTime/3 + undefined:isDelete/3 + undefined:isOpen/3 + undefined:isRead/3 + dfmTraversal:isWrite/3 + no callers + +dfmTraversal:isWrite/3 dfmTraversal.pro:737:741 + subgoals: + builtin:,/2 + called from: + dfmTraversal:isStraightLine/3 + +dfmTraversal:iterationBlock/3 dfmTraversal.pro:874:881 + subgoals: + builtin:,/2 + no callers + +dfmTraversal:make_into_args/4 dfmTraversal.pro:1425:1428 + subgoals: + dfmTraversal:arg_generator/4 + called from: + dfmTraversal:full_traverse_helper/8 + +dfmTraversal:popStack/2 dfmTraversal.pro:605:607 + no subgoals + called from: + dfmTraversal:generate_next_arc/3 + +dfmTraversal:queryForMissingArcs/3 dfmTraversal.pro:1603:1612 + subgoals: + builtin:findall/3 + no callers + +dfmTraversal:removeBrackets/2 dfmTraversal.pro:1495:1502 + subgoals: + builtin:append/3 + builtin:atom_codes/2 + called from: + dfmTraversal:full_traverse/6 + loopRewriter:createTraversalNodes/8 + +dfmTraversal:step/8 dfmTraversal.pro:1180:1204 + subgoals: + builtin:findall/3 + dfmTraversal:generate_next_edge/4 + lists:remove_dups/2 + no callers + +dfmTraversal:stop_at_first_number/3 dfmTraversal.pro:1442:1450 + subgoals: + builtin: =< /2 + builtin: >= /2 + builtin:append/3 + dfmTraversal:stop_at_first_number/3 + called from: + dfmTraversal:stop_at_first_number/3 + +dfmTraversal:validateForwardArcs/1 dfmTraversal.pro:990:1018 + subgoals: + lists:delete/3 + builtin:findall/3 + builtin:if/3 + called from: + dfmTraversal:buildForwardArcs/1 + +dfmTraversal:visited/1 dynamic dfmTraversal.pro:0:0 + modified in: + dfmTraversal:find_a_forward_pair/3 + dfmTraversal:find_a_pair/3 + no subgoals + called from: + dfmTraversal:find_a_forward_pair/3 + dfmTraversal:find_a_pair/3 + +dfmTraversal:writeMissingArcsTxt/3 dfmTraversal.pro:1612:1621 + subgoals: + builtin:atom_concat/3 + builtin:close/1 + builtin:if/3 + builtin:open/3 + no callers + +dfmTraversal:write_arcs/1 dfmTraversal.pro:1457:1468 + subgoals: + builtin:,/2 + no callers + +dfmTraversal:write_missing_arclist/3 dfmTraversal.pro:1621:1623 + subgoals: + builtin:,/2 + builtin: = /2 + solsticeUtility:splitAtom/3 + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro + +dfmUtility:graphCfg/1 dfmUtility.pro:5:12 + subgoals: + dfmUtility:graphCfgArcs/1 + dfmUtility:graphCfgNodes/1 + builtin:nl/0 + builtin:write/1 + no callers + +dfmUtility:graphCfgArcs/1 dfmUtility.pro:36:41 + subgoals: + builtin:,/2 + called from: + dfmUtility:graphCfg/1 + +dfmUtility:graphCfgNodes/1 dfmUtility.pro:12:22 + subgoals: + builtin:,/2 + called from: + dfmUtility:graphCfg/1 + +dfmUtility:graphDfm/1 dfmUtility.pro:49:56 + subgoals: + dfmUtility:graphDfmArcs/1 + dfmUtility:graphDfmNodes/1 + builtin:nl/0 + builtin:write/1 + no callers + +dfmUtility:graphDfmArcs/1 dfmUtility.pro:81:86 + subgoals: + builtin:,/2 + called from: + dfmUtility:graphDfm/1 + +dfmUtility:graphDfmNodes/1 dfmUtility.pro:56:67 + subgoals: + builtin:,/2 + called from: + dfmUtility:graphDfm/1 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro + +dfm_mappings:cond/2 dfm_mappings.pro:252:254 + subgoals: + builtin: =.. /2 + no callers + +dfm_mappings:conditionalVar/3 dfm_mappings.pro:127:135 + subgoals: + builtin:,/2 + sessionManager:getCurrentProject/1 + no callers + +dfm_mappings:initialNode/2 dfm_mappings.pro:141:147 + subgoals: + builtin:,/2 + sessionManager:getCurrentProject/1 + no callers + +dfm_mappings:inoutput/2 dfm_mappings.pro:255:257 + subgoals: + builtin: =.. /2 + no callers + +dfm_mappings:lineNumber/3 dfm_mappings.pro:208:213 + subgoals: + builtin: = /2 + undefined:lineGet1/3 + undefined:lineGet2/3 + no callers + +dfm_mappings:methodName/3 dfm_mappings.pro:223:233 + subgoals: + undefined:methodFind/3 + undefined:piFuncFind/3 + no callers + +dfm_mappings:moduleName/3 dfm_mappings.pro:180:185 + subgoals: + builtin:,/2 + sessionManager:getCurrentProject/1 + no callers + +dfm_mappings:phiByNode/3 dfm_mappings.pro:157:165 + subgoals: + builtin:,/2 + sessionManager:getCurrentProject/1 + no callers + +dfm_mappings:phiByVar/3 dfm_mappings.pro:165:174 + subgoals: + builtin:,/2 + sessionManager:getCurrentProject/1 + no callers + +dfm_mappings:phiFunctions/3 dfm_mappings.pro:236:244 + subgoals: + builtin:,/2 + sessionManager:getCurrentProject/1 + no callers + +dfm_mappings:recursiveTermSearch/2 dfm_mappings.pro:248:251 + subgoals: + builtin: = /2 + dfm_mappings:recursiveTermSearch/2 + called from: + dfm_mappings:recursiveTermSearch/2 + +dfm_mappings:recursiveTermSearch/3 dfm_mappings.pro:244:247 + subgoals: + builtin: =.. /2 + dfm_mappings:recursiveTermSearch/3 + called from: + dfm_mappings:recursiveTermSearch/3 + +dfm_mappings:stmtType/3 dfm_mappings.pro:56:62 + subgoals: + builtin:,/2 + sessionManager:getCurrentProject/1 + no callers + +dfm_mappings:terminalNode/2 dfm_mappings.pro:135:141 + subgoals: + builtin:,/2 + sessionManager:getCurrentProject/1 + no callers + +dfm_mappings:variable/3 dfm_mappings.pro:120:127 + subgoals: + undefined:input/3 + undefined:output/3 + no callers + +dfm_mappings:writeList/1 dfm_mappings.pro:258:260 + subgoals: + builtin:nl/0 + builtin:write/1 + dfm_mappings:writeList/1 + called from: + dfm_mappings:writeList/1 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro + +diagnostics:(?)/1 diagnostics.pro:337:346 + subgoals: + builtin:call/1 + diagnostics:tnl/0 + diagnostics:trace/1 + no callers + +diagnostics:atomlist_concat/2 diagnostics.pro:652:655 + subgoals: + diagnostics:atomlist_concat/3 + no callers + +diagnostics:atomlist_concat/3 diagnostics.pro:655:658 + subgoals: + builtin: = /2 + builtin:append/3 + builtin:atom/1 + builtin:atom_codes/2 + diagnostics:atomlist_concat/3 + builtin:number/1 + builtin:number_codes/2 + called from: + diagnostics:atomlist_concat/2 + diagnostics:atomlist_concat/3 + +diagnostics:(bg)/1 diagnostics.pro:346:351 + subgoals: + builtin:call/1 + builtin:nl/0 + builtin:writeq/1 + no callers + +diagnostics:bnkl/1 diagnostics.pro:671:680 + no subgoals + called from: + diagnostics:check_bms/1 + +diagnostics:check_bms/1 diagnostics.pro:680:686 + subgoals: + diagnostics:bnkl/1 + diagnostics:check_length/2 + diagnostics:check_members/2 + no callers + +diagnostics:check_length/2 diagnostics.pro:686:692 + subgoals: + builtin: = /2 + builtin:length/2 + builtin:nl/0 + builtin:write/1 + called from: + diagnostics:check_bms/1 + +diagnostics:check_members/2 diagnostics.pro:696:698 + subgoals: + diagnostics:check_members/2 + builtin:nl/0 + builtin:write/1 + lists:select/3 + called from: + diagnostics:check_bms/1 + diagnostics:check_members/2 + +diagnostics:close_log_file/0 diagnostics.pro:264:269 + subgoals: + builtin:close/1 + user:currentStream/1 + retract-user:currentStream/1 + no callers + +diagnostics:compare_lists/2 diagnostics.pro:553:558 + subgoals: + builtin: == /2 + diagnostics:tl/1 + diagnostics:tnl/0 + diagnostics:trace_list/1 + no callers + +diagnostics:decIndent/0 diagnostics.pro:629:637 + subgoals: + builtin: >= /2 + diagnostics:indentation/1 + builtin:is/2 + assert-diagnostics:indentation/1 + retract-diagnostics:indentation/1 + called from: + diagnostics:display_pred/2 + diagnostics:(profile)/1 + +diagnostics:(ding)/1 diagnostics.pro:351:360 + subgoals: + builtin:call/1 + builtin:functor/3 + diagnostics:tick/1 + no callers + +diagnostics:dinged/2 dynamic diagnostics.pro:0:0 + modified in: + diagnostics:tick/1 + no subgoals + no callers + +diagnostics:display_afarg/1 diagnostics.pro:530:535 + subgoals: + diagnostics:display_list/1 + diagnostics:tnl/0 + diagnostics:trace/1 + called from: + diagnostics:display_afargs/1 + +diagnostics:display_afargs/1 diagnostics.pro:525:527 + subgoals: + diagnostics:display_afarg/1 + diagnostics:display_afargs/1 + called from: + diagnostics:display_afargs/1 + diagnostics:trace_af/1 + +diagnostics:display_args/2 diagnostics.pro:111:118 + subgoals: + diagnostics:display_item/2 + diagnostics:display_items/2 + diagnostics:tl/1 + diagnostics:tnl/0 + diagnostics:tts/1 + called from: + diagnostics:display_item/2 + +diagnostics:display_item/2 diagnostics.pro:128:134 + subgoals: + builtin: =.. /2 + builtin: =< /2 + builtin:atomic/1 + diagnostics:display_args/2 + diagnostics:display_list/2 + builtin:is/2 + lists:is_list/1 + builtin:memberchk/2 + diagnostics:tl/1 + diagnostics:tnl/0 + diagnostics:trace/1 + diagnostics:tts/1 + called from: + diagnostics:display_args/2 + diagnostics:display_items/2 + diagnostics:display_list/2 + +diagnostics:display_items/2 diagnostics.pro:118:121 + subgoals: + diagnostics:display_item/2 + diagnostics:display_items/2 + diagnostics:tl/1 + diagnostics:tnl/0 + called from: + diagnostics:display_args/2 + diagnostics:display_items/2 + diagnostics:display_list/2 + +diagnostics:display_list/1 diagnostics.pro:102:104 + subgoals: + diagnostics:display_list/2 + called from: + diagnostics:display_afarg/1 + +diagnostics:display_list/2 diagnostics.pro:104:111 + subgoals: + diagnostics:display_item/2 + diagnostics:display_items/2 + diagnostics:tl/1 + diagnostics:tnl/0 + diagnostics:tts/1 + called from: + diagnostics:display_item/2 + diagnostics:display_list/1 + +diagnostics:display_pred/2 diagnostics.pro:564:577 + subgoals: + builtin: =.. /2 + diagnostics:decIndent/0 + diagnostics:incIndent/0 + diagnostics:indent/1 + builtin:nl/1 + diagnostics:pred_args/2 + builtin:writeq/2 + called from: + diagnostics:pred_arg/2 + diagnostics:(profile)/1 + +diagnostics:(fugit)/1 diagnostics.pro:368:391 + subgoals: + builtin:call/1 + diagnostics:functorID/2 + builtin:is/2 + builtin:statistics/2 + assert-diagnostics:tempus/1 + assert-diagnostics:tempusFail/1 + no callers + +diagnostics:fugitID/1 dynamic diagnostics.pro:0:0 + modified in: + diagnostics:profile_init/1 + no subgoals + no callers + +diagnostics:fugit_report/0 diagnostics.pro:391:400 + subgoals: + builtin:findall/3 + diagnostics:fugit_summaries/2 + lists:remove_dups/2 + no callers + +diagnostics:fugit_summaries/2 diagnostics.pro:400:406 + subgoals: + builtin: =.. /2 + builtin:findall/3 + diagnostics:fugit_summaries/2 + builtin:is/2 + builtin:keysort/2 + builtin:length/2 + diagnostics:sum_tempus/3 + diagnostics:trace/1 + diagnostics:trace_list/1 + called from: + diagnostics:fugit_report/0 + diagnostics:fugit_summaries/2 + +diagnostics:functorID/2 diagnostics.pro:424:428 + subgoals: + builtin: =.. /2 + builtin: > /2 + builtin:arg/3 + builtin:functor/3 + lists:is_list/1 + builtin:length/2 + called from: + diagnostics:(fugit)/1 + +diagnostics:getTimeStamp/1 diagnostics.pro:58:77 + subgoals: + builtin:atom_codes/2 + builtin:atom_concat/3 + undefined:datime/1 + builtin:number_codes/2 + called from: + diagnostics:profile_init/0 + diagnostics:rename_log_file_with_timestamp/1 + diagnostics:trace_file/1 + +diagnostics:get_log_file/1 diagnostics.pro:258:264 + subgoals: + builtin:atom_concat/3 + undefined:environ/2 + called from: + diagnostics:open_log_file/0 + +diagnostics:incIndent/0 diagnostics.pro:623:629 + subgoals: + builtin:is/2 + assert-diagnostics:indentation/1 + retract-diagnostics:indentation/1 + called from: + diagnostics:display_pred/2 + diagnostics:(profile)/1 + +diagnostics:indent/1 diagnostics.pro:615:620 + subgoals: + builtin:format/3 + diagnostics:indent/1 + diagnostics:indentation/1 + assert-diagnostics:indentation/1 + called from: + diagnostics:display_pred/2 + diagnostics:indent/1 + diagnostics:pred_args/2 + diagnostics:(profile)/1 + +diagnostics:indentation/1 dynamic diagnostics.pro:0:0 + modified in: + diagnostics:decIndent/0 + diagnostics:incIndent/0 + diagnostics:indent/1 + diagnostics:profile_init/1 + no subgoals + called from: + diagnostics:decIndent/0 + diagnostics:indent/1 + +diagnostics:lets/2 diagnostics.pro:715:717 + no subgoals + called from: + diagnostics:mltest/0 + +diagnostics:log/2 diagnostics.pro:189:203 + subgoals: + builtin:compound/1 + undefined:datime/1 + builtin:flush_output/0 + builtin:flush_output/1 + builtin:nl/0 + builtin:nl/1 + diagnostics:open_log_file/0 + builtin:write/1 + builtin:write/2 + diagnostics:write_log/3 + diagnostics:write_terminal_log/2 + user:currentStream/1 + no callers + +diagnostics:log_directory/0 diagnostics.pro:249:258 + subgoals: + builtin:atom_concat/3 + undefined:environ/2 + builtin:if/3 + called from: + diagnostics:open_log_file/0 + +diagnostics:mltest/0 diagnostics.pro:707:713 + subgoals: + builtin: = /2 + diagnostics:lets/2 + builtin:nl/0 + builtin:write/1 + no callers + +diagnostics:open_log_file/0 diagnostics.pro:238:249 + subgoals: + diagnostics:get_log_file/1 + builtin:if/3 + diagnostics:log_directory/0 + assert-user:currentStream/1 + called from: + diagnostics:log/2 + +diagnostics:(pf)/1 diagnostics.pro:462:465 + subgoals: + diagnostics:(profile)/1 + no callers + +diagnostics:pred_arg/2 diagnostics.pro:594:607 + subgoals: + builtin: = /2 + builtin: > /2 + builtin: \= /2 + builtin:compound/1 + diagnostics:display_pred/2 + builtin:functor/3 + lists:is_list/1 + diagnostics:pred_arg/2 + builtin:write/2 + builtin:writeq/2 + lists:length/2 + called from: + diagnostics:pred_arg/2 + diagnostics:pred_args/2 + +diagnostics:pred_args/2 diagnostics.pro:586:588 + subgoals: + diagnostics:indent/1 + builtin:nl/1 + diagnostics:pred_arg/2 + diagnostics:pred_args/2 + builtin:write/2 + called from: + diagnostics:display_pred/2 + diagnostics:pred_args/2 + +diagnostics:(profile)/1 diagnostics.pro:465:490 + subgoals: + builtin:call/1 + diagnostics:decIndent/0 + diagnostics:display_pred/2 + builtin:flush_output/1 + builtin:functor/3 + diagnostics:incIndent/0 + diagnostics:indent/1 + builtin:is/2 + builtin:nl/0 + builtin:nl/1 + builtin:statistics/2 + builtin:write/1 + builtin:write/2 + assert-diagnostics:tempus/1 + called from: + diagnostics:(pf)/1 + +diagnostics:profile_fini/0 diagnostics.pro:490:494 + subgoals: + builtin:close/1 + diagnostics:profile_report/1 + no callers + +diagnostics:profile_init/0 diagnostics.pro:442:455 + subgoals: + builtin:atom_concat/3 + diagnostics:getTimeStamp/1 + diagnostics:profile_init/1 + no callers + +diagnostics:profile_init/1 diagnostics.pro:455:462 + subgoals: + builtin:abolish/1 + builtin:open/4 + builtin:retractall/1 + assert-diagnostics:fugitID/1 + assert-diagnostics:indentation/1 + called from: + diagnostics:profile_init/0 + +diagnostics:profile_report/1 diagnostics.pro:494:505 + subgoals: + builtin:findall/3 + lists:keys_and_values/3 + builtin:keysort/2 + builtin:nl/1 + lists:sumlist/2 + builtin:write/2 + diagnostics:write_fts/2 + called from: + diagnostics:profile_fini/0 + +diagnostics:rename_log_file_with_timestamp/1 diagnostics.pro:299:308 + subgoals: + builtin:atom_concat/3 + undefined:environ/2 + diagnostics:getTimeStamp/1 + file_systems:rename_file/2 + no callers + +diagnostics:sum_tempus/3 diagnostics.pro:417:421 + subgoals: + builtin:is/2 + diagnostics:sum_tempus/3 + called from: + diagnostics:fugit_summaries/2 + diagnostics:sum_tempus/3 + +diagnostics:tempus/1 dynamic diagnostics.pro:0:0 + modified in: + diagnostics:(fugit)/1 + diagnostics:(profile)/1 + no subgoals + no callers + +diagnostics:tempusFail/1 dynamic diagnostics.pro:0:0 + modified in: + diagnostics:(fugit)/1 + no subgoals + no callers + +diagnostics:tick/1 diagnostics.pro:360:366 + subgoals: + builtin:is/2 + assert-diagnostics:dinged/2 + retract-diagnostics:dinged/2 + called from: + diagnostics:(ding)/1 + +diagnostics:tl/1 diagnostics.pro:50:52 + subgoals: + builtin:write/2 + called from: + diagnostics:compare_lists/2 + diagnostics:display_args/2 + diagnostics:display_item/2 + diagnostics:display_items/2 + diagnostics:display_list/2 + diagnostics:trace_items/2 + diagnostics:trace_path_list/1 + diagnostics:trace_paths/1 + diagnostics:trace_tree/1 + diagnostics:trace_tree/2 + +diagnostics:tnl/0 diagnostics.pro:43:45 + subgoals: + builtin:nl/1 + called from: + diagnostics:(?)/1 + diagnostics:compare_lists/2 + diagnostics:display_afarg/1 + diagnostics:display_args/2 + diagnostics:display_item/2 + diagnostics:display_items/2 + diagnostics:display_list/2 + diagnostics:trace_af/1 + diagnostics:trace_af_frame/1 + diagnostics:trace_af_list/1 + diagnostics:trace_afs/1 + diagnostics:trace_items/2 + diagnostics:trace_path_list/1 + diagnostics:trace_paths/1 + diagnostics:trace_tree/1 + diagnostics:trace_tree/2 + +diagnostics:trace/1 diagnostics.pro:77:81 + subgoals: + builtin:flush_output/1 + builtin:writeq/2 + called from: + diagnostics:(?)/1 + diagnostics:display_afarg/1 + diagnostics:display_item/2 + diagnostics:fugit_summaries/2 + diagnostics:trace_af/1 + diagnostics:trace_af_frame/1 + diagnostics:trace_af_list/1 + diagnostics:trace_afs/1 + diagnostics:trace_items/2 + diagnostics:trace_path_list/1 + diagnostics:trace_tree/2 + +diagnostics:trace_af/1 diagnostics.pro:515:523 + subgoals: + builtin: =.. /2 + diagnostics:display_afargs/1 + diagnostics:tnl/0 + diagnostics:trace/1 + called from: + diagnostics:trace_afs/1 + +diagnostics:trace_af_frame/1 diagnostics.pro:535:544 + subgoals: + builtin: =.. /2 + diagnostics:tnl/0 + diagnostics:trace/1 + diagnostics:trace_af_list/1 + no callers + +diagnostics:trace_af_list/1 diagnostics.pro:544:546 + subgoals: + diagnostics:tnl/0 + diagnostics:trace/1 + diagnostics:trace_af_list/1 + diagnostics:trace_afs/1 + called from: + diagnostics:trace_af_frame/1 + diagnostics:trace_af_list/1 + +diagnostics:trace_afs/1 diagnostics.pro:505:512 + subgoals: + diagnostics:tnl/0 + diagnostics:trace/1 + diagnostics:trace_af/1 + diagnostics:trace_afs/1 + called from: + diagnostics:trace_af_list/1 + diagnostics:trace_afs/1 + +diagnostics:trace_close/0 diagnostics.pro:40:43 + subgoals: + builtin:close/1 + no callers + +diagnostics:trace_file/1 diagnostics.pro:52:58 + subgoals: + builtin:atom_concat/3 + diagnostics:getTimeStamp/1 + called from: + diagnostics:trace_open/0 + +diagnostics:trace_items/2 diagnostics.pro:84:86 + subgoals: + builtin:is/2 + diagnostics:tl/1 + diagnostics:tnl/0 + diagnostics:trace/1 + diagnostics:trace_items/2 + diagnostics:tts/1 + called from: + diagnostics:trace_items/2 + diagnostics:trace_list/1 + +diagnostics:trace_list/1 diagnostics.pro:81:84 + subgoals: + diagnostics:trace_items/2 + called from: + diagnostics:compare_lists/2 + diagnostics:fugit_summaries/2 + diagnostics:trace_path_list/1 + +diagnostics:trace_open/0 diagnostics.pro:35:40 + subgoals: + builtin:open/4 + builtin:retractall/1 + diagnostics:trace_file/1 + no callers + +diagnostics:trace_path_list/1 diagnostics.pro:157:164 + subgoals: + diagnostics:tl/1 + diagnostics:tnl/0 + diagnostics:trace/1 + diagnostics:trace_list/1 + called from: + diagnostics:trace_paths/1 + +diagnostics:trace_paths/1 diagnostics.pro:151:153 + subgoals: + diagnostics:tl/1 + diagnostics:tnl/0 + diagnostics:trace_path_list/1 + diagnostics:trace_paths/1 + called from: + diagnostics:trace_paths/1 + +diagnostics:trace_tree/1 diagnostics.pro:166:171 + subgoals: + diagnostics:tl/1 + diagnostics:tnl/0 + diagnostics:trace_tree/2 + no callers + +diagnostics:trace_tree/2 diagnostics.pro:171:184 + subgoals: + builtin: = /2 + builtin:is/2 + diagnostics:tl/1 + diagnostics:tnl/0 + diagnostics:trace/1 + diagnostics:trace_trees/2 + diagnostics:tts/1 + called from: + diagnostics:trace_tree/1 + diagnostics:trace_trees/2 + +diagnostics:trace_trees/2 diagnostics.pro:184:186 + subgoals: + diagnostics:trace_tree/2 + diagnostics:trace_trees/2 + called from: + diagnostics:trace_tree/2 + diagnostics:trace_trees/2 + +diagnostics:tt/0 diagnostics.pro:45:47 + subgoals: + builtin:write/2 + called from: + diagnostics:tts/1 + +diagnostics:tts/1 diagnostics.pro:47:49 + subgoals: + builtin:is/2 + diagnostics:tt/0 + diagnostics:tts/1 + called from: + diagnostics:display_args/2 + diagnostics:display_item/2 + diagnostics:display_list/2 + diagnostics:trace_items/2 + diagnostics:trace_tree/2 + diagnostics:tts/1 + +diagnostics:write_fts/1 diagnostics.pro:638:644 + subgoals: + builtin:nl/0 + diagnostics:write_fts/1 + builtin:writeq/1 + called from: + diagnostics:write_fts/1 + +diagnostics:write_fts/2 diagnostics.pro:647:649 + subgoals: + builtin:nl/1 + diagnostics:write_fts/2 + builtin:writeq/2 + called from: + diagnostics:profile_report/1 + diagnostics:write_fts/2 + +diagnostics:write_log/3 diagnostics.pro:269:281 + subgoals: + undefined:datime/1 + builtin:write/2 + diagnostics:write_log_argument/2 + called from: + diagnostics:log/2 + +diagnostics:write_log_argument/2 diagnostics.pro:292:296 + subgoals: + builtin:write/2 + called from: + diagnostics:write_log/3 + +diagnostics:write_terminal_log/2 diagnostics.pro:281:292 + subgoals: + undefined:datime/1 + builtin:flush_output/0 + builtin:nl/0 + builtin:write/1 + diagnostics:write_terminal_log_argument/1 + called from: + diagnostics:log/2 + +diagnostics:write_terminal_log_argument/1 diagnostics.pro:296:299 + subgoals: + builtin:write/1 + called from: + diagnostics:write_terminal_log/2 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro + +errorHandler:getAnError/1 errorHandler.pro:68:71 + no subgoals + called from: + errorHandler:test_logError/0 + +errorHandler:logError/1 errorHandler.pro:7:20 + subgoals: + log:log/2 + errorHandler:logErrorDetails/1 + called from: + errorHandler:test_logError/0 + preProcess:runCfm/3 + preProcess:runDfm/3 + query_interface:conjunction/6 + query_interface:disjunction/5 + query_interface:predicate/2 + query_interface:query/4 + query_interface:readFileTerms/3 + +errorHandler:logErrorDetails/1 errorHandler.pro:23:25 + subgoals: + builtin:atom/1 + builtin:atom_concat/3 + log:log/2 + log:log/3 + errorHandler:logErrorDetails/1 + called from: + errorHandler:logError/1 + errorHandler:logErrorDetails/1 + +errorHandler:test_logError/0 errorHandler.pro:55:67 + subgoals: + errorHandler:getAnError/1 + errorHandler:logError/1 + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro + +executeMiniProgram:(:-)/1 executeMiniProgram.pro:27:30 + no subgoals + no callers + +executeMiniProgram:addEdges/1 executeMiniProgram.pro:251:264 + subgoals: + builtin:,/2 + called from: + executeMiniProgram:poToPro/3 + +executeMiniProgram:assertStmt/2 executeMiniProgram.pro:298:301 + subgoals: + builtin:assert/1 + called from: + executeMiniProgram:loadCfm/2 + +executeMiniProgram:assignIds/1 + subgoals: + executeMiniProgram:assignIds/2 + called from: + executeMiniProgram:getSemanticFacts/3 + +executeMiniProgram:assignIds/2 + subgoals: + executeMiniProgram:assignIds/2 + builtin:atom_codes/2 + builtin:atom_concat/3 + builtin:is/2 + builtin:number_codes/2 + called from: + executeMiniProgram:assignIds/1 + executeMiniProgram:assignIds/2 + +executeMiniProgram:build/2 executeMiniProgram.pro:30:60 + subgoals: + builtin:atom_codes/2 + builtin:atom_concat/3 + executeMiniProgram:cleanNamespace/1 + executeMiniProgram:fileLines/2 + executeMiniProgram:getNameSpace/2 + executeMiniProgram:getSemanticFacts/3 + builtin:if/3 + executeMiniProgram:loadCfm/2 + executeMiniProgram:poToPro/3 + solsticeUtility:resetAllAtomGeneration/0 + builtin:save_modules/2 + no callers + +executeMiniProgram:build/3 executeMiniProgram.pro:60:64 + subgoals: + executeMiniProgram:catchCall/2 + no callers + +executeMiniProgram:buildDfm/2 executeMiniProgram.pro:64:99 + subgoals: + builtin:atom/1 + builtin:atom_codes/2 + builtin:atom_concat/3 + executeMiniProgram:cleanNamespace/1 + executeMiniProgram:createDfm/2 + executeMiniProgram:fileLines/2 + executeMiniProgram:getDfmRepresentation/3 + executeMiniProgram:getNameSpace/2 + executeMiniProgram:getSemanticFacts/3 + builtin:if/3 + executeMiniProgram:loadCfm/2 + executeMiniProgram:poToPro/3 + solsticeUtility:resetAllAtomGeneration/0 + builtin:save_modules/2 + no callers + +executeMiniProgram:buildDfm/3 executeMiniProgram.pro:153:156 + subgoals: + executeMiniProgram:catchCall/2 + no callers + +executeMiniProgram:buildDfm/4 executeMiniProgram.pro:128:153 + subgoals: + builtin: = /2 + executeMiniProgram:cleanNamespace/1 + executeMiniProgram:createDfm/2 + executeMiniProgram:getDfmRepresentation/3 + executeMiniProgram:getSemanticFacts/3 + lists:is_list/1 + executeMiniProgram:loadCfm/2 + solsticeUtility:resetAllAtomGeneration/0 + no callers + +executeMiniProgram:catchCall/2 executeMiniProgram.pro:267:273 + subgoals: + builtin: = /2 + called from: + executeMiniProgram:build/3 + executeMiniProgram:buildDfm/3 + +executeMiniProgram:cleanNamespace/1 executeMiniProgram.pro:169:181 + subgoals: + builtin:(\+)/1 + builtin:clause/2 + builtin:current_predicate/2 + builtin:retract/1 + called from: + executeMiniProgram:build/2 + executeMiniProgram:buildDfm/2 + executeMiniProgram:buildDfm/4 + +executeMiniProgram:conditionalPostProcessing/4 + subgoals: + builtin: = /2 + lists:append/2 + builtin:sort/2 + no callers + +executeMiniProgram:createDfm/2 executeMiniProgram.pro:286:298 + subgoals: + builtin:assert/1 + dfmCreate:dfmCreate/2 + dfmCreate:dfmCreateDomainName/2 + called from: + executeMiniProgram:buildDfm/2 + executeMiniProgram:buildDfm/4 + +executeMiniProgram:expandExternalCall/2 + subgoals: + builtin: = /2 + solsticeUtility:generateAtom/2 + called from: + executeMiniProgram:processStatement/5 + +executeMiniProgram:expandFunction/4 + subgoals: + builtin: = /2 + solsticeUtility:generateAtom/2 + builtin:memberchk/2 + executeMiniProgram:setContext/3 + builtin:throw/1 + called from: + executeMiniProgram:processStatement/5 + +executeMiniProgram:expandStructure/4 + subgoals: + builtin: = /2 + builtin:memberchk/2 + executeMiniProgram:setContext/3 + called from: + executeMiniProgram:processStatement/5 + +executeMiniProgram:fileLines/2 executeMiniProgram.pro:182:188 + subgoals: + builtin:close/1 + builtin:open/3 + executeMiniProgram:readFileLines/2 + called from: + executeMiniProgram:build/2 + executeMiniProgram:buildDfm/2 + +executeMiniProgram:filterNonGlobals/3 + subgoals: + executeMiniProgram:filterNonGlobals/3 + executeMiniProgram:global/2 + called from: + executeMiniProgram:filterNonGlobals/3 + executeMiniProgram:functionCallTraversalStepHelper/4 + executeMiniProgram:getFunctionInputsOutputs/6 + +executeMiniProgram:functionCallTraversal/3 + subgoals: + builtin: = /2 + executeMiniProgram:functionCallTraversal/3 + executeMiniProgram:functionCallTraversalStep/3 + called from: + executeMiniProgram:functionCallTraversal/3 + executeMiniProgram:functionGlobalSignature/5 + +executeMiniProgram:functionCallTraversalStep/3 + subgoals: + executeMiniProgram:functionCallTraversalStepHelper/4 + called from: + executeMiniProgram:functionCallTraversal/3 + +executeMiniProgram:functionCallTraversalStepHelper/4 + subgoals: + builtin: = /2 + builtin:append/3 + executeMiniProgram:filterNonGlobals/3 + executeMiniProgram:getNeighborsInputsOutputs/4 + builtin:sort/2 + called from: + executeMiniProgram:functionCallTraversalStep/3 + +executeMiniProgram:functionFacts/7 + subgoals: + builtin: = /2 + builtin:append/3 + executeMiniProgram:functionFacts/7 + executeMiniProgram:processSource/2 + executeMiniProgram:processStatement/5 + called from: + executeMiniProgram:functionFacts/7 + executeMiniProgram:staticSingleAssignment/3 + +executeMiniProgram:functionGlobalSignature/5 + subgoals: + builtin:findall/3 + executeMiniProgram:functionCallTraversal/3 + executeMiniProgram:getFunctionTraversalInfo/4 + log:log/2 + builtin:sort/2 + called from: + executeMiniProgram:getSemanticFacts/3 + +executeMiniProgram:getDfmRepresentation/3 executeMiniProgram.pro:156:167 + subgoals: + builtin:append/3 + builtin:clause/2 + builtin:current_predicate/2 + executeMiniProgram:getDfmRepresentation/3 + builtin:retract/1 + called from: + executeMiniProgram:buildDfm/2 + executeMiniProgram:buildDfm/4 + executeMiniProgram:getDfmRepresentation/3 + +executeMiniProgram:getFunctionInputsOutputs/6 + subgoals: + builtin: = /2 + lists:append/2 + executeMiniProgram:filterNonGlobals/3 + builtin:findall/3 + builtin:sort/2 + no callers + +executeMiniProgram:getFunctionNeighbors/2 + subgoals: + builtin:findall/3 + no callers + +executeMiniProgram:getFunctionTraversalInfo/4 + subgoals: + builtin:findall/3 + called from: + executeMiniProgram:functionGlobalSignature/5 + +executeMiniProgram:getNameSpace/2 executeMiniProgram.pro:192:207 + subgoals: + builtin: = /2 + lists:append/2 + builtin:atom_codes/2 + executeMiniProgram:getNameSpace/2 + called from: + executeMiniProgram:build/2 + executeMiniProgram:buildDfm/2 + executeMiniProgram:getNameSpace/2 + +executeMiniProgram:getNeighborsInputsOutputs/4 + subgoals: + lists:append/2 + builtin:findall/3 + called from: + executeMiniProgram:functionCallTraversalStepHelper/4 + +executeMiniProgram:getSemanticFacts/3 + subgoals: + builtin: = /2 + executeMiniProgram:assignIds/1 + builtin:findall/3 + executeMiniProgram:functionGlobalSignature/5 + builtin:if/3 + log:log/2 + executeMiniProgram:staticSingleAssignment/3 + called from: + executeMiniProgram:build/2 + executeMiniProgram:buildDfm/2 + executeMiniProgram:buildDfm/4 + +executeMiniProgram:global/2 + subgoals: + builtin:memberchk/2 + called from: + executeMiniProgram:filterNonGlobals/3 + +executeMiniProgram:instanceVariable/5 + subgoals: + builtin: = /2 + builtin:ground/1 + builtin:is/2 + builtin:member/2 + builtin:memberchk/2 + lists:select/4 + lists:selectchk/3 + lists:selectchk/4 + builtin:throw/1 + called from: + executeMiniProgram:processStatement/5 + +executeMiniProgram:loadCfm/2 executeMiniProgram.pro:273:286 + subgoals: + builtin:assert/1 + executeMiniProgram:assertStmt/2 + called from: + executeMiniProgram:build/2 + executeMiniProgram:buildDfm/2 + executeMiniProgram:buildDfm/4 + +executeMiniProgram:mergeVariableInstances/4 + subgoals: + builtin:memberchk/2 + executeMiniProgram:mergeVariableInstances/7 + lists:selectchk/4 + called from: + executeMiniProgram:processStatement/5 + +executeMiniProgram:mergeVariableInstances/7 + subgoals: + builtin: = /2 + builtin:is/2 + executeMiniProgram:mergeVariableInstances/7 + lists:selectchk/3 + called from: + executeMiniProgram:mergeVariableInstances/4 + executeMiniProgram:mergeVariableInstances/7 + +executeMiniProgram:namespaceToFile/2 executeMiniProgram.pro:215:236 + subgoals: + builtin:close/1 + builtin:findall/3 + executeMiniProgram:nlWrite/1 + builtin:open/3 + builtin:set_output/1 + builtin:sort/2 + no callers + +executeMiniProgram:nlWrite/1 executeMiniProgram.pro:265:267 + subgoals: + builtin:nl/0 + builtin:write/1 + builtin:writeq/1 + called from: + executeMiniProgram:namespaceToFile/2 + executeMiniProgram:poToPro/3 + +executeMiniProgram:parseMiniC/2 + subgoals: + miniCParse:getFileDefinitionsC/2 + log:log/2 + builtin:nl/0 + no callers + +executeMiniProgram:parseMiniCobol/2 + subgoals: + miniCobolParse:getFileDefinitionsCobol/2 + log:log/2 + builtin:nl/0 + no callers + +executeMiniProgram:poToPro/3 executeMiniProgram.pro:236:251 + subgoals: + executeMiniProgram:addEdges/1 + builtin:findall/3 + executeMiniProgram:nlWrite/1 + builtin:open/3 + builtin:sort/2 + builtin:tell/1 + builtin:told/0 + builtin:use_module/1 + called from: + executeMiniProgram:build/2 + executeMiniProgram:buildDfm/2 + +executeMiniProgram:processSource/2 + subgoals: + builtin:(\+)/1 + builtin:append/3 + builtin:atom_codes/2 + builtin:throw/1 + called from: + executeMiniProgram:functionFacts/7 + +executeMiniProgram:processStatement/5 + subgoals: + builtin: = /2 + builtin: =.. /2 + executeMiniProgram:expandExternalCall/2 + executeMiniProgram:expandFunction/4 + executeMiniProgram:expandStructure/4 + executeMiniProgram:instanceVariable/5 + builtin:memberchk/2 + executeMiniProgram:mergeVariableInstances/4 + executeMiniProgram:processStatement/5 + lists:scanlist/5 + lists:selectchk/4 + called from: + executeMiniProgram:functionFacts/7 + executeMiniProgram:processStatement/5 + executeMiniProgram:staticSingleAssignment/3 + +executeMiniProgram:readFileLines/2 executeMiniProgram.pro:188:192 + subgoals: + builtin:if/3 + builtin:read_line/2 + called from: + executeMiniProgram:fileLines/2 + +executeMiniProgram:setContext/3 + no subgoals + called from: + executeMiniProgram:expandFunction/4 + executeMiniProgram:expandStructure/4 + executeMiniProgram:staticSingleAssignment/3 + +executeMiniProgram:staticSingleAssignment/3 + subgoals: + builtin: = /2 + lists:append/2 + builtin:append/3 + executeMiniProgram:functionFacts/7 + undefined:list_to_ord_set/2 + builtin:memberchk/2 + executeMiniProgram:processStatement/5 + lists:select/4 + executeMiniProgram:setContext/3 + executeMiniProgram:staticSingleAssignment/3 + called from: + executeMiniProgram:getSemanticFacts/3 + executeMiniProgram:staticSingleAssignment/3 + +executeMiniProgram:v/0 + subgoals: + builtin:module/2 + no callers + +executeMiniProgram:variable/4 + subgoals: + builtin:memberchk/2 + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/feasibilityService.pro + +feasibilityService:feasibilityService/4 feasibilityService.pro:11:15 + subgoals: + builtin:append/3 + builtin:do/2 + feasibilityService:feasibilityService/4 + feasibilityService:getNodes/2 + log:log/2 + builtin:nl/0 + reasoningEngine:resolveFeasibility/4 + feasibilityService:setFeasibility/3 + feasibilityService:whileLoopsExist/2 + builtin:writeq/1 + called from: + feasibilityService:feasibilityService/4 + feasibilityService:feasibilityServiceNode/4 + +feasibilityService:feasibilityServiceNode/4 feasibilityService.pro:33:51 + subgoals: + builtin:append/3 + builtin:do/2 + feasibilityService:feasibilityService/4 + feasibilityService:getNodes/2 + log:log/2 + builtin:nl/0 + undefined:resolveFeasibilityOfNode/4 + feasibilityService:setFeasibility/3 + feasibilityService:whileLoopsExist/2 + builtin:writeq/1 + no callers + +feasibilityService:getInfeasibleNodes/4 feasibilityService.pro:65:79 + subgoals: + builtin: = /2 + feasibilityService:getNodesWithFeasible/2 + log:log/2 + reasoningEngine:resolveFeasibility/5 + no callers + +feasibilityService:getNodes/2 feasibilityService.pro:86:93 + subgoals: + builtin:append/3 + builtin:findall/3 + builtin:sort/2 + called from: + feasibilityService:feasibilityService/4 + feasibilityService:feasibilityServiceNode/4 + +feasibilityService:getNodesWithFeasible/2 feasibilityService.pro:79:86 + subgoals: + builtin:append/3 + builtin:findall/3 + builtin:sort/2 + called from: + feasibilityService:getInfeasibleNodes/4 + feasibilityService:testFeasibilityOfNode/5 + +feasibilityService:setFeasibility/3 feasibilityService.pro:93:96 + subgoals: + builtin:member/2 + feasibilityService:setFeasibility/3 + called from: + feasibilityService:feasibilityService/4 + feasibilityService:feasibilityServiceNode/4 + feasibilityService:setFeasibility/3 + +feasibilityService:testFeasibilityOfNode/5 feasibilityService.pro:51:65 + subgoals: + builtin: = /2 + feasibilityService:getNodesWithFeasible/2 + builtin:is/2 + log:log/2 + reasoningEngine:resolveFeasibilityOfNode/5 + no callers + +feasibilityService:whileLoopsExist/2 feasibilityService.pro:120:129 + subgoals: + builtin:,/2 + builtin: = /2 + dfmTraversal:get_module_from_nodeID/2 + builtin:member/2 + called from: + feasibilityService:feasibilityService/4 + feasibilityService:feasibilityServiceNode/4 + +feasibilityService:whileNodesExist/4 feasibilityService.pro:103:120 + subgoals: + builtin:,/2 + builtin: = /2 + dfmTraversal:get_module_from_nodeID/2 + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro + +fileInformation:fileOutputPath/1 dynamic fileInformation.pro:0:0 + modified in: + preProcess:runCfm/3 + preProcess:runDfm/3 + no subgoals + no callers + +fileInformation:filePath/1 dynamic fileInformation.pro:0:0 + modified in: + preProcess:initializeDebug/2 + preProcess:runCfm/3 + preProcess:runDfm/3 + no subgoals + called from: + tclScreen:tclScreen/6 + +fileInformation:representationsPath/1 dynamic fileInformation.pro:0:0 + modified in: + preProcess:initializeDebug/2 + preProcess:runCfm/3 + preProcess:runDfm/3 + no subgoals + called from: + preProcess:loadModule/1 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/interpreter.pro + +interpreter:debug/5 interpreter.pro:48:51 + subgoals: + builtin: = /2 + builtin: =.. /2 + builtin:append/3 + builtin:call/1 + interpreter:deleteDuplicates/2 + log:log/2 + called from: + preProcess:stepRecurse/1 + +interpreter:deleteDuplicates/2 interpreter.pro:70:77 + subgoals: + lists:append/2 + interpreter:deleteDuplicates/4 + lists:reverse/2 + called from: + interpreter:debug/5 + interpreter:interpret/4 + preProcess:initializeDebug/2 + preProcess:runCfm/3 + preProcess:runDfm/3 + +interpreter:deleteDuplicates/4 interpreter.pro:77:82 + subgoals: + builtin: = /2 + interpreter:deleteDuplicates/4 + builtin:member/2 + called from: + interpreter:deleteDuplicates/2 + interpreter:deleteDuplicates/4 + +interpreter:interpret/4 interpreter.pro:13:28 + subgoals: + builtin: = /2 + builtin: =.. /2 + builtin:append/3 + builtin:call/1 + interpreter:deleteDuplicates/2 + interpreter:interpret/4 + called from: + interpreter:interpret/4 + preProcess:runCfm/3 + preProcess:runDfm/3 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro + +libraryModule:buildLibFunction/4 libraryModule.pro:36:53 + subgoals: + builtin:call/1 + libraryModule:insertArg/3 + libraryModule:libFunction/6 + called from: + dfmCreate:createDependencies/4 + +libraryModule:getLibFunction/3 libraryModule.pro:11:22 + subgoals: + libraryModule:libFunction/6 + no callers + +libraryModule:insertArg/3 libraryModule.pro:256:269 + subgoals: + builtin: =.. /2 + builtin:append/3 + called from: + libraryModule:buildLibFunction/4 + libraryModule:runLibFunction/3 + +libraryModule:libCreatePrintf/4 libraryModule.pro:244:250 + subgoals: + undefined: : /3 + builtin:assert/1 + dfmCreate:varsAexp/2 + no callers + +libraryModule:libFunction/6 libraryModule.pro:53:73 + no subgoals + called from: + libraryModule:buildLibFunction/4 + libraryModule:getLibFunction/3 + libraryModule:runLibFunction/3 + +libraryModule:libPrintf/3 libraryModule.pro:238:244 + subgoals: + builtin:,/2 + no callers + +libraryModule:runLibFunction/3 libraryModule.pro:22:36 + subgoals: + builtin:call/1 + libraryModule:insertArg/3 + libraryModule:libFunction/6 + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro + +log:callfail/1 log.pro:106:111 + subgoals: + builtin:nl/0 + builtin:write/1 + no callers + +log:callfail/5 log.pro:125:130 + subgoals: + log:decIndent/0 + log:incIndent/0 + log:indent/0 + builtin:nl/0 + builtin:write/1 + builtin:writeq/1 + no callers + +log:decIndent/0 log.pro:155:163 + subgoals: + builtin: >= /2 + log:indentation/1 + builtin:is/2 + assert-log:indentation/1 + retract-log:indentation/1 + called from: + log:callfail/5 + log:exitredo/5 + +log:exitredo/1 log.pro:112:114 + subgoals: + builtin:nl/0 + builtin:write/1 + no callers + +log:exitredo/5 log.pro:134:139 + subgoals: + log:decIndent/0 + log:incIndent/0 + log:indent/0 + builtin:nl/0 + builtin:write/1 + builtin:writeq/1 + no callers + +log:flag/2 dynamic log.pro:0:0 + modified in: + log:set_flag/2 + no subgoals + called from: + log:get_flag/2 + +log:formatChars/2 log.pro:198:203 + no subgoals + called from: + log:number_formattedAtom/2 + +log:getLogLevel/1 log.pro:38:48 + subgoals: + log:get_flag/2 + called from: + log:log/3 + log:logq/3 + +log:get_flag/2 log.pro:25:28 + subgoals: + log:flag/2 + called from: + log:getLogLevel/1 + +log:incIndent/0 log.pro:147:153 + subgoals: + builtin:is/2 + assert-log:indentation/1 + retract-log:indentation/1 + called from: + log:callfail/5 + log:exitredo/5 + +log:indent/0 log.pro:143:147 + subgoals: + builtin:format/2 + log:indentation/1 + called from: + log:callfail/5 + log:exitredo/5 + log:log/5 + +log:indentation/1 dynamic log.pro:0:0 + modified in: + log:decIndent/0 + log:incIndent/0 + no subgoals + called from: + log:decIndent/0 + log:indent/0 + +log:log/2 log.pro:60:68 + subgoals: + log:log/3 + called from: + appFnUtilities:getCursorSelectStmt/2 + applicationFunction:applyUserConstraintsToAppFunction/4 + applicationFunction:constructApplicationFunctions/3 + applicationFunction:feasibilityOfNode/5 + applicationFunction:generateAppFunctionFromVar/7 + applicationFunction:generateApplicationFunctions/2 + applicationFunction:generateEncodingAppFunctions/5 + applicationFunction:generateInfoTransAppFunctions/5 + applicationFunction:getConcept/5 + applicationFunction:removeNodeVarDups/2 + applicationFunction:retrieveConceptByStmt/3 + applicationFunction:setUpAppFnProject/1 + applicationModel:assertModuleIntoApplicationModel/4 + applicationModel:cleanApplicationModelForProject/1 + applicationModel:generateApplicationModelForCurrentProject/0 + applicationModel:retractModuleFromApplicationModel/2 + applicationModel:writeApplicationModelToFile/0 + dfmCreate:createDependencies/4 + dfmCreate:create_function_io_dependencies/6 + dfmTraversal:build_dfm_traversal_graph/2 + errorHandler:logError/1 + errorHandler:logErrorDetails/1 + executeMiniProgram:functionGlobalSignature/5 + executeMiniProgram:getSemanticFacts/3 + executeMiniProgram:parseMiniC/2 + executeMiniProgram:parseMiniCobol/2 + feasibilityService:feasibilityService/4 + feasibilityService:feasibilityServiceNode/4 + feasibilityService:getInfeasibleNodes/4 + feasibilityService:testFeasibilityOfNode/5 + interpreter:debug/5 + logicTranslator:getFieldSizeFromOntology/5 + miniCParse:writeList/1 + screenUtility:getTrueFalseEditableListFromTCLFile/2 + screenUtility:screenOutputArgs/5 + semantics:execute/5 + semantics:getVar/3 + semantics:setVar/4 + sessionManager:getAppFnPath/2 + sessionManager:getApplicationModelPath/2 + sessionManager:getArcPath/2 + sessionManager:getCFMPath/2 + sessionManager:getCurrentProject/1 + sessionManager:getDFMPath/2 + sessionManager:getDFMPath/3 + sessionManager:getOntologyPath/2 + sessionManager:getScreenPath/2 + sessionManager:getSourcePath/2 + sessionManager:getTransactionPath/2 + sessionManager:reloadRepresentation/2 + sessionManager:setUpCurrentProject/1 + tclScreen:handleProcedure/2 + transactionInterface:loadTransactionsForCurrentProject/0 + +log:log/3 log.pro:76:91 + subgoals: + builtin: =< /2 + log:getLogLevel/1 + log:logType_logLevel/2 + builtin:nl/0 + log:timestamp/1 + builtin:write/1 + called from: + errorHandler:logErrorDetails/1 + log:log/2 + +log:log/5 log.pro:115:123 + subgoals: + log:indent/0 + builtin:nl/0 + builtin:write/1 + builtin:writeq/1 + no callers + +log:logType_logLevel/2 log.pro:49:56 + subgoals: + builtin:number/1 + called from: + log:log/3 + log:logq/3 + +log:logq/2 log.pro:69:75 + subgoals: + log:logq/3 + called from: + operators:(?)/1 + +log:logq/3 log.pro:92:105 + subgoals: + builtin: =< /2 + log:getLogLevel/1 + log:logType_logLevel/2 + builtin:nl/0 + log:timestamp/1 + builtin:write/1 + builtin:writeq/1 + called from: + log:logq/2 + +log:number_formattedAtom/2 log.pro:190:198 + subgoals: + builtin:atom_chars/2 + log:formatChars/2 + builtin:number_chars/2 + called from: + log:timestamp/1 + +log:setLogLevel/1 log.pro:28:38 + subgoals: + log:set_flag/2 + no callers + +log:set_flag/2 log.pro:19:25 + subgoals: + assert-log:flag/2 + retract-log:flag/2 + called from: + log:setLogLevel/1 + +log:timestamp/1 log.pro:164:188 + subgoals: + builtin:atom_concat/3 + undefined:datime/1 + log:number_formattedAtom/2 + called from: + log:log/3 + log:logq/3 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro + +logicTranslationUtilities:consolidatePrimitive/5 logicTranslationUtilities.pro:240:251 + subgoals: + builtin: = /2 + solsticeUtility:generateAtom/2 + builtin:member/2 + builtin:number/1 + called from: + logicTranslationUtilities:consolidateTermFunctor/4 + +logicTranslationUtilities:consolidateTermFunctor/4 logicTranslationUtilities.pro:231:236 + subgoals: + builtin: =.. /2 + logicTranslationUtilities:consolidatePrimitive/5 + solsticeUtility:primitive/1 + called from: + logicTranslationUtilities:isomorphicConsolidate/4 + +logicTranslationUtilities:deleteDuplicates/3 logicTranslationUtilities.pro:145:157 + subgoals: + logicTranslationUtilities:deleteDuplicates/3 + builtin:if/3 + called from: + logicTranslationUtilities:deleteDuplicates/3 + loopRewriter:rewriteLoop/7 + +logicTranslationUtilities:drillIntoLoopBody/5 logicTranslationUtilities.pro:118:131 + subgoals: + builtin:,/2 + logicTranslationUtilities:drillIntoLoopBody/5 + called from: + logicTranslationUtilities:drillIntoLoopBody/5 + loopRewriter:searchForReadInLoop/4 + rankingFunction:getVariableMaxIterations/10 + +logicTranslationUtilities:findAllLoopsInProject/2 logicTranslationUtilities.pro:67:79 + subgoals: + builtin:findall/3 + no callers + +logicTranslationUtilities:findLoopWithNoUpstreamLoops/2 logicTranslationUtilities.pro:79:114 + subgoals: + builtin:do/2 + no callers + +logicTranslationUtilities:getConsolidatedLoopBodyConstraints/3 logicTranslationUtilities.pro:52:67 + subgoals: + backSubstituter:mathSmash/2 + logicTranslator:processNonWhileNodes/4 + backSubstituter:subIt/2 + called from: + loopRewriter:rewriteLoop/7 + +logicTranslationUtilities:isBadLoop/3 logicTranslationUtilities.pro:114:118 + subgoals: + builtin:member/2 + assert-logicTranslationUtilities:thisLoopIsNoGood/1 + no callers + +logicTranslationUtilities:isomorphicConsolidate/3 logicTranslationUtilities.pro:216:224 + subgoals: + logicTranslationUtilities:isomorphicConsolidate/4 + solsticeUtility:resetAtomGeneration/1 + called from: + logicTranslationUtilities:prettyPrinter/1 + +logicTranslationUtilities:isomorphicConsolidate/4 logicTranslationUtilities.pro:224:230 + subgoals: + logicTranslationUtilities:consolidateTermFunctor/4 + logicTranslationUtilities:isomorphicConsolidate/4 + solsticeUtility:subtermSelect/4 + called from: + logicTranslationUtilities:isomorphicConsolidate/3 + logicTranslationUtilities:isomorphicConsolidate/4 + +logicTranslationUtilities:patternDelete/3 logicTranslationUtilities.pro:23:32 + subgoals: + builtin: = /2 + builtin:copy_term/2 + logicTranslationUtilities:patternDelete/3 + called from: + logicTranslationUtilities:patternDelete/3 + logicTranslator:constraintsGuaranteeStmtExecuted/6 + logicTranslator:processAllNodes/3 + logicTranslator:stmtExecutionAndConstraintsIsPossible/6 + logicTranslator:stmtExecutionGuaranteesConstraints/6 + +logicTranslationUtilities:prependToStackHead/3 logicTranslationUtilities.pro:42:52 + subgoals: + builtin:atom/1 + builtin:atom_concat/3 + called from: + logicTranslator:constrainArgument/8 + logicTranslator:constrainExternalArgument/9 + +logicTranslationUtilities:prettyPrinter/1 logicTranslationUtilities.pro:159:164 + subgoals: + logicTranslationUtilities:isomorphicConsolidate/3 + logicTranslationUtilities:prettyPrinter/2 + no callers + +logicTranslationUtilities:prettyPrinter/2 logicTranslationUtilities.pro:164:179 + subgoals: + builtin: = /2 + solsticeUtility:atom_concat/2 + builtin:is/2 + builtin:nl/0 + logicTranslationUtilities:prettyPrinter/2 + logicTranslationUtilities:spaces/2 + builtin:write/1 + builtin:writeq/1 + called from: + logicTranslationUtilities:prettyPrinter/1 + logicTranslationUtilities:prettyPrinter/2 + +logicTranslationUtilities:spaces/2 logicTranslationUtilities.pro:210:212 + subgoals: + builtin: =< /2 + solsticeUtility:atom_concat/2 + builtin:is/2 + logicTranslationUtilities:spaces/2 + called from: + logicTranslationUtilities:prettyPrinter/2 + logicTranslationUtilities:spaces/2 + +logicTranslationUtilities:thisLoopIsNoGood/1 dynamic logicTranslationUtilities.pro:0:0 + modified in: + logicTranslationUtilities:isBadLoop/3 + no subgoals + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro + +logicTranslator:callConditionality/6 logicTranslator.pro:817:829 + subgoals: + builtin:,/2 + called from: + logicTranslator:nodeFunctionAndParentFunction/5 + +logicTranslator:constrainArgument/8 logicTranslator.pro:759:768 + subgoals: + builtin: = /2 + builtin:atom_codes/2 + logicTranslator:getVariableOrValue/6 + logicTranslationUtilities:prependToStackHead/3 + undefined:write_to_codes/2 + no callers + +logicTranslator:constrainExternalArgument/9 logicTranslator.pro:768:775 + subgoals: + builtin: = /2 + builtin:atom_codes/2 + logicTranslator:getVariableOrValue/6 + logicTranslationUtilities:prependToStackHead/3 + undefined:write_to_codes/2 + no callers + +logicTranslator:constraintsGuaranteeStmtExecuted/6 logicTranslator.pro:23:36 + subgoals: + logicTranslator:formatConstraints/2 + logicTranslationUtilities:patternDelete/3 + logicTranslator:processAllNodes/3 + dfmTraversal:find_all_upstream_nodes_inclusive/4 + smtSolver:smtFormula/3 + no callers + +logicTranslator:createConcatConstraints/6 logicTranslator.pro:336:353 + subgoals: + builtin: = /2 + builtin:append/3 + logicTranslator:createConcatConstraints/6 + builtin:if/3 + called from: + logicTranslator:createConcatConstraints/6 + logicTranslator:processNode/5 + +logicTranslator:createFieldConstraints/4 logicTranslator.pro:500:513 + subgoals: + builtin: = /2 + builtin: > /2 + builtin:atom_codes/2 + builtin:number_codes/2 + builtin:sub_atom/5 + no callers + +logicTranslator:createSubstringConstraints/6 logicTranslator.pro:368:383 + subgoals: + builtin: = /2 + builtin:append/3 + logicTranslator:createSubstringConstraints/6 + lists:delete/3 + builtin:if/3 + called from: + logicTranslator:createSubstringConstraints/6 + logicTranslator:processNode/5 + +logicTranslator:formatConstraints/2 logicTranslator.pro:59:66 + subgoals: + logicTranslator:formatConstraintsHelper/3 + called from: + logicTranslator:constraintsGuaranteeStmtExecuted/6 + logicTranslator:negate/3 + logicTranslator:processConditional/6 + logicTranslator:processNode/5 + logicTranslator:stmtExecutionAndConstraintsIsPossible/6 + logicTranslator:stmtExecutionGuaranteesConstraints/6 + reasoningEngine:resolveFeasibility/5 + reasoningEngine:resolveFeasibilityOfNode/5 + +logicTranslator:formatConstraintsHelper/3 logicTranslator.pro:69:73 + subgoals: + logicTranslator:formatConstraintsHelper/3 + called from: + logicTranslator:formatConstraints/2 + logicTranslator:formatConstraintsHelper/3 + +logicTranslator:getConditionConstraints/5 logicTranslator.pro:669:677 + subgoals: + builtin:append/3 + logicTranslator:getVariableOrValue/6 + no callers + +logicTranslator:getFieldSizeFromOntology/5 logicTranslator.pro:527:543 + subgoals: + builtin:atom_codes/2 + solsticeUtility:atom_concat/2 + log:log/2 + builtin:number_codes/2 + solsticeUtility:splitAtom/3 + logicTranslator:traverseOntology/3 + no callers + +logicTranslator:getPhiConditions/7 logicTranslator.pro:632:639 + subgoals: + builtin: = /2 + builtin:append/3 + logicTranslator:getPhiConditions/7 + called from: + logicTranslator:getPhiConditions/7 + logicTranslator:processNode/5 + +logicTranslator:getVariableOrValue/6 logicTranslator.pro:705:717 + subgoals: + builtin:,/2 + builtin: = /2 + builtin:atom/1 + builtin:if/3 + builtin:number/1 + builtin:throw/1 + called from: + logicTranslator:constrainArgument/8 + logicTranslator:constrainExternalArgument/9 + logicTranslator:getConditionConstraints/5 + logicTranslator:processArithmeticExpression/6 + logicTranslator:processNode/5 + +logicTranslator:getWhileBodyNodes/4 logicTranslator.pro:115:137 + subgoals: + builtin:,/2 + builtin: = /2 + dfmTraversal:get_module_from_nodeID/2 + no callers + +logicTranslator:negate/3 logicTranslator.pro:325:330 + subgoals: + builtin: = /2 + logicTranslator:formatConstraints/2 + called from: + logicTranslator:processNode/5 + +logicTranslator:nodeFunction/2 logicTranslator.pro:794:799 + subgoals: + builtin: = /2 + solsticeUtility:atom_concat/2 + no callers + +logicTranslator:nodeFunctionAndParentFunction/5 logicTranslator.pro:799:817 + subgoals: + builtin: = /2 + solsticeUtility:atom_concat/2 + logicTranslator:callConditionality/6 + builtin:dif/2 + no callers + +logicTranslator:nodesExecutionLogic/3 logicTranslator.pro:775:782 + subgoals: + lists:append/2 + undefined:nodeExecutionLogic/3 + builtin:sort/2 + called from: + logicTranslator:processAllNodes/3 + +logicTranslator:processAllNodes/3 logicTranslator.pro:75:115 + subgoals: + builtin:append/3 + builtin:do/2 + builtin:findall/3 + solsticeUtility:flattenList/2 + logicTranslator:nodesExecutionLogic/3 + logicTranslationUtilities:patternDelete/3 + logicTranslator:processNonWhileNodes/4 + logicTranslator:processWhileNodes/4 + undefined:subtract/3 + called from: + logicTranslator:constraintsGuaranteeStmtExecuted/6 + logicTranslator:stmtExecutionAndConstraintsIsPossible/6 + logicTranslator:stmtExecutionGuaranteesConstraints/6 + reasoningEngine:resolveFeasibility/5 + reasoningEngine:resolveFeasibilityOfNode/5 + +logicTranslator:processArithmeticExpression/6 logicTranslator.pro:251:263 + subgoals: + builtin: = /2 + builtin: =.. /2 + lists:append/2 + builtin:atom/1 + builtin:atom_codes/2 + logicTranslator:getVariableOrValue/6 + builtin:member/2 + builtin:number/1 + logicTranslator:processArithmeticExpression/6 + called from: + logicTranslator:processArithmeticExpression/6 + logicTranslator:processNode/5 + +logicTranslator:processConditional/6 logicTranslator.pro:641:652 + subgoals: + builtin:append/3 + logicTranslator:formatConstraints/2 + builtin:if/3 + logicTranslator:processConditional/6 + called from: + logicTranslator:processConditional/6 + logicTranslator:processNode/5 + +logicTranslator:processNode/5 logicTranslator.pro:177:191 + subgoals: + builtin:,/2 + builtin: = /2 + builtin: =.. /2 + builtin:append/3 + logicTranslator:createConcatConstraints/6 + logicTranslator:createSubstringConstraints/6 + logicTranslator:formatConstraints/2 + logicTranslator:getPhiConditions/7 + logicTranslator:getVariableOrValue/6 + logicTranslator:negate/3 + logicTranslator:processArithmeticExpression/6 + logicTranslator:processConditional/6 + logicTranslator:processRead/10 + builtin:throw/1 + no callers + +logicTranslator:processNonWhileNodes/4 logicTranslator.pro:156:172 + subgoals: + builtin:,/2 + builtin: = /2 + dfmTraversal:get_module_from_nodeID/2 + builtin:throw/1 + called from: + logicTranslationUtilities:getConsolidatedLoopBodyConstraints/3 + logicTranslator:processAllNodes/3 + loopRewriter:rewriteLoop/7 + +logicTranslator:processRead/10 logicTranslator.pro:447:499 + subgoals: + builtin:,/2 + called from: + logicTranslator:processNode/5 + +logicTranslator:processWhileNodes/4 logicTranslator.pro:137:154 + subgoals: + builtin:,/2 + builtin: = /2 + dfmTraversal:get_module_from_nodeID/2 + called from: + logicTranslator:processAllNodes/3 + +logicTranslator:recursiveAssign/4 logicTranslator.pro:209:212 + subgoals: + builtin: = /2 + builtin:(\+)/1 + builtin:if/3 + builtin:length/2 + logicTranslator:recursiveAssign/4 + called from: + logicTranslator:recursiveAssign/4 + +logicTranslator:stmtExecutionAndConstraintsIsPossible/6 logicTranslator.pro:49:59 + subgoals: + builtin:append/3 + logicTranslator:formatConstraints/2 + logicTranslationUtilities:patternDelete/3 + logicTranslator:processAllNodes/3 + dfmTraversal:find_all_upstream_nodes_inclusive/4 + smtSolver:smtFormula/3 + no callers + +logicTranslator:stmtExecutionGuaranteesConstraints/6 logicTranslator.pro:36:49 + subgoals: + logicTranslator:formatConstraints/2 + logicTranslationUtilities:patternDelete/3 + logicTranslator:processAllNodes/3 + dfmTraversal:find_all_upstream_nodes_inclusive/4 + smtSolver:smtFormula/3 + no callers + +logicTranslator:traverseOntology/3 logicTranslator.pro:552:564 + subgoals: + ontology:hasA/2 + builtin:if/3 + ontology:isA/2 + logicTranslator:traverseOntology/3 + called from: + logicTranslator:getFieldSizeFromOntology/5 + logicTranslator:traverseOntology/3 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro + +loopRewriter:constraintIsAssignment/2 loopRewriter.pro:355:364 + subgoals: + builtin: = /2 + called from: + loopRewriter:getIterationVar/7 + +loopRewriter:createEriksImagination/7 loopRewriter.pro:102:175 + subgoals: + builtin:,/2 + builtin: = /2 + called from: + loopRewriter:rewriteLoop/7 + +loopRewriter:createInnerIfConditions/3 loopRewriter.pro:257:274 + subgoals: + builtin: = /2 + builtin: \= /2 + loopRewriter:createInnerIfConditions/3 + solsticeUtility:subtermMember/2 + solsticeUtility:subtermSelect/4 + called from: + loopRewriter:createInnerIfConditions/3 + +loopRewriter:createInsidePhis/2 loopRewriter.pro:186:195 + subgoals: + builtin: = /2 + builtin:do/2 + no callers + +loopRewriter:createOutsidePhis/7 loopRewriter.pro:233:255 + subgoals: + builtin: = /2 + builtin:append/3 + loopRewriter:createOutsidePhis/7 + builtin:member/2 + called from: + loopRewriter:createOutsidePhis/7 + +loopRewriter:createTraversalNodes/8 loopRewriter.pro:195:230 + subgoals: + builtin: =:= /2 + builtin: > /2 + builtin:append/3 + dfmTraversal:convertTermToAtom/2 + loopRewriter:createTraversalNodes/8 + builtin:do/2 + builtin:is/2 + dfmTraversal:removeBrackets/2 + called from: + loopRewriter:createTraversalNodes/8 + loopRewriter:rewriteLoop/7 + +loopRewriter:getIterationVar/7 loopRewriter.pro:280:311 + subgoals: + builtin:,/2 + builtin: = /2 + builtin:(\+)/1 + loopRewriter:constraintIsAssignment/2 + builtin:if/3 + builtin:member/2 + loopRewriter:searchForReadInLoop/4 + solsticeUtility:subtermMember/2 + no callers + +loopRewriter:modifyGlobalOuts/3 loopRewriter.pro:175:186 + subgoals: + builtin:do/2 + no callers + +loopRewriter:rewriteLoop/7 loopRewriter.pro:26:102 + subgoals: + builtin: = /2 + builtin:assert/1 + loopRewriter:createEriksImagination/7 + loopRewriter:createTraversalNodes/8 + logicTranslationUtilities:deleteDuplicates/3 + builtin:do/2 + builtin:findall/3 + logicTranslationUtilities:getConsolidatedLoopBodyConstraints/3 + rankingFunction:getNumIterations/8 + builtin:if/3 + logicTranslator:processNonWhileNodes/4 + builtin:retract/1 + no callers + +loopRewriter:searchForReadInLoop/4 loopRewriter.pro:311:318 + subgoals: + builtin: = /2 + logicTranslationUtilities:drillIntoLoopBody/5 + builtin:findall/3 + called from: + loopRewriter:getIterationVar/7 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro + +miniCParse:(-)/2 miniCParse.pro:81:87 + subgoals: + miniCParse:curlyBracketed/1 + miniCParse:dataType/1 + miniCParse:functionDeclaration/2 + miniCParse:parseCheckpoint/0 + undefined:{}/1 + called from: + miniCParse:controlStatement/2 + miniCParse:parseCheckpoint/0 + miniCParse:statements/2 + +miniCParse:alphanumericToken/1 miniCParse.pro:463:467 + subgoals: + miniCParse:capitalizedAlphanumericToken/1 + miniCParse:uncapitalizedAlphanumericToken/1 + called from: + miniCParse:conditionalFactor/2 + miniCParse:controlStatement/2 + miniCParse:externalFunction/4 + miniCParse:globalDefinition/2 + miniCParse:statement/1 + miniCParse:statement/2 + miniCParse:structureDefinition/1 + miniCParse:variableName/1 + +miniCParse:argument/2 miniCParse.pro:268:271 + subgoals: + miniCParse:arguments/2 + miniCParse:arithmeticFunction/2 + miniCParse:punctuationToken/1 + miniCParse:stringToken/1 + miniCParse:variableInstance/1 + called from: + miniCParse:arguments/2 + miniCParse:conditionalFactor/2 + miniCParse:statement/2 + +miniCParse:arguments/2 miniCParse.pro:253:264 + subgoals: + builtin:[]/0 + miniCParse:argument/2 + miniCParse:arguments/2 + miniCParse:punctuationToken/1 + undefined:{}/1 + called from: + miniCParse:argument/2 + miniCParse:arguments/2 + miniCParse:externalFunction/4 + +miniCParse:arithmeticExpression/2 miniCParse.pro:354:358 + subgoals: + miniCParse:arithmeticExpression/2 + miniCParse:arithmeticExpression/3 + miniCParse:arithmeticTerm/2 + miniCParse:punctuationToken/1 + undefined:{}/1 + called from: + miniCParse:arithmeticExpression/2 + miniCParse:arithmeticExpression/3 + miniCParse:arithmeticFunction/2 + +miniCParse:arithmeticExpression/3 miniCParse.pro:358:360 + subgoals: + miniCParse:arithmeticExpression/2 + miniCParse:arithmeticExpression/3 + miniCParse:arithmeticTerm/2 + miniCParse:punctuationToken/1 + undefined:{}/1 + called from: + miniCParse:arithmeticExpression/2 + miniCParse:arithmeticExpression/3 + +miniCParse:arithmeticFactor/2 miniCParse.pro:393:396 + subgoals: + miniCParse:arithmeticFactor/2 + miniCParse:externalFunction/4 + miniCParse:function/3 + miniCParse:numberToken/1 + miniCParse:parenthesized/1 + miniCParse:punctuationToken/1 + miniCParse:variableInstance/1 + called from: + miniCParse:arithmeticFactor/2 + miniCParse:arithmeticTerm/2 + miniCParse:arithmeticTerm/3 + +miniCParse:arithmeticFunction/2 miniCParse.pro:350:354 + subgoals: + miniCParse:arithmeticExpression/2 + called from: + miniCParse:argument/2 + miniCParse:statement/2 + +miniCParse:arithmeticTerm/2 miniCParse.pro:374:377 + subgoals: + miniCParse:arithmeticFactor/2 + miniCParse:arithmeticTerm/2 + miniCParse:arithmeticTerm/3 + miniCParse:punctuationToken/1 + undefined:{}/1 + called from: + miniCParse:arithmeticExpression/2 + miniCParse:arithmeticExpression/3 + miniCParse:arithmeticTerm/2 + miniCParse:arithmeticTerm/3 + +miniCParse:arithmeticTerm/3 miniCParse.pro:377:379 + subgoals: + miniCParse:arithmeticFactor/2 + miniCParse:arithmeticTerm/2 + miniCParse:arithmeticTerm/3 + miniCParse:punctuationToken/1 + undefined:{}/1 + called from: + miniCParse:arithmeticTerm/2 + miniCParse:arithmeticTerm/3 + +miniCParse:capitalizedAlphanumericToken/1 miniCParse.pro:475:477 + subgoals: + builtin:./2 + miniCParse:comments/0 + called from: + miniCParse:alphanumericToken/1 + +miniCParse:caseStatements/2 miniCParse.pro:213:216 + subgoals: + miniCParse:curlyBracketed/1 + miniCParse:statements/2 + undefined:{}/1 + no callers + +miniCParse:changeToSetList/3 miniCParse.pro:514:519 + subgoals: + builtin: = /2 + miniCParse:changeToSetList/3 + lists:reverse/2 + called from: + miniCParse:changeToSetList/3 + miniCParse:substringException/2 + +miniCParse:comments/0 miniCParse.pro:219:226 + subgoals: + builtin:[]/0 + miniCParse:comments/0 + miniCParse:miniCTokens/1 + miniCParse:punctuationToken/1 + called from: + miniCParse:capitalizedAlphanumericToken/1 + miniCParse:comments/0 + miniCParse:definitions/1 + miniCParse:numberToken/1 + miniCParse:punctuationToken/1 + miniCParse:stringToken/1 + miniCParse:token/1 + miniCParse:uncapitalizedAlphanumericToken/1 + +miniCParse:conditionalExpression/2 miniCParse.pro:277:283 + subgoals: + miniCParse:conditionalExpression/2 + miniCParse:conditionalTerm/2 + miniCParse:punctuationToken/1 + undefined:{}/1 + called from: + miniCParse:conditionalExpression/2 + +miniCParse:conditionalFactor/2 miniCParse.pro:297:302 + subgoals: + miniCParse:alphanumericToken/1 + miniCParse:argument/2 + miniCParse:conditionalFactor/2 + miniCParse:numberToken/1 + miniCParse:parenthesized/1 + miniCParse:punctuationToken/1 + miniCParse:stringToken/1 + miniCParse:variableInstance/1 + undefined:{}/1 + called from: + miniCParse:conditionalFactor/2 + miniCParse:conditionalTerm/2 + +miniCParse:conditionalTerm/2 miniCParse.pro:288:292 + subgoals: + miniCParse:conditionalFactor/2 + miniCParse:conditionalTerm/2 + miniCParse:punctuationToken/1 + undefined:{}/1 + called from: + miniCParse:conditionalExpression/2 + miniCParse:conditionalTerm/2 + +miniCParse:controlStatement/2 miniCParse.pro:108:139 + subgoals: + miniCParse:(-)/2 + miniCParse:alphanumericToken/1 + undefined:{}/1 + called from: + miniCParse:statements/2 + +miniCParse:curlyBracketed/1 miniCParse.pro:436:439 + subgoals: + miniCParse:punctuationToken/1 + called from: + miniCParse:(-)/2 + miniCParse:caseStatements/2 + miniCParse:globalDefinition/2 + miniCParse:structureDefinition/1 + +miniCParse:dataType/1 miniCParse.pro:249:253 + subgoals: + miniCParse:uncapitalizedAlphanumericToken/1 + undefined:{}/1 + called from: + miniCParse:(-)/2 + miniCParse:statement/1 + +miniCParse:definitions/1 miniCParse.pro:34:47 + subgoals: + miniCParse:comments/0 + miniCParse:functionDefinitions/1 + miniCParse:globalDefinitions/2 + miniCParse:parseCheckpoint/0 + no callers + +miniCParse:expandElement/3 miniCParse.pro:70:72 + no subgoals + called from: + miniCParse:expandStructure/3 + +miniCParse:expandStructure/3 miniCParse.pro:67:70 + subgoals: + miniCParse:expandElement/3 + no callers + +miniCParse:externalFunction/4 miniCParse.pro:242:246 + subgoals: + miniCParse:alphanumericToken/1 + miniCParse:arguments/2 + miniCParse:punctuationToken/1 + undefined:{}/1 + called from: + miniCParse:arithmeticFactor/2 + miniCParse:statement/1 + +miniCParse:function/2 miniCParse.pro:235:239 + subgoals: + miniCParse:function/3 + undefined:{}/1 + called from: + miniCParse:statement/2 + +miniCParse:function/3 miniCParse.pro:239:242 + subgoals: + miniCParse:parenthesized/1 + miniCParse:uncapitalizedAlphanumericToken/1 + called from: + miniCParse:arithmeticFactor/2 + miniCParse:function/2 + miniCParse:statement/2 + +miniCParse:functionDeclaration/1 miniCParse.pro:228:233 + subgoals: + miniCParse:functionDeclaration/2 + undefined:{}/1 + no callers + +miniCParse:functionDeclaration/2 miniCParse.pro:233:235 + subgoals: + miniCParse:parenthesized/1 + miniCParse:uncapitalizedAlphanumericToken/1 + called from: + miniCParse:(-)/2 + miniCParse:functionDeclaration/1 + +miniCParse:functionDefinitions/1 miniCParse.pro:72:79 + subgoals: + builtin:[]/0 + undefined:functionDefinition/1 + miniCParse:functionDefinitions/1 + miniCParse:parseCheckpoint/0 + undefined:{}/1 + called from: + miniCParse:definitions/1 + miniCParse:functionDefinitions/1 + +miniCParse:getFileDefinitionsC/2 miniCParse.pro:22:34 + subgoals: + undefined:definitions/3 + tokenize:tokens/3 + called from: + executeMiniProgram:parseMiniC/2 + +miniCParse:globalDefinition/2 miniCParse.pro:55:59 + subgoals: + miniCParse:alphanumericToken/1 + miniCParse:curlyBracketed/1 + miniCParse:parseCheckpoint/0 + miniCParse:punctuationToken/1 + miniCParse:statement/1 + undefined:{}/1 + called from: + miniCParse:globalDefinitions/2 + +miniCParse:globalDefinitions/2 miniCParse.pro:47:53 + subgoals: + builtin:[]/0 + miniCParse:globalDefinition/2 + miniCParse:globalDefinitions/2 + undefined:{}/1 + called from: + miniCParse:definitions/1 + miniCParse:globalDefinitions/2 + +miniCParse:miniCTokens/1 miniCParse.pro:456:461 + subgoals: + builtin:[]/0 + miniCParse:miniCTokens/1 + miniCParse:token/1 + called from: + miniCParse:comments/0 + miniCParse:miniCTokens/1 + +miniCParse:numberToken/1 miniCParse.pro:469:473 + subgoals: + builtin:./2 + miniCParse:comments/0 + miniCParse:numberToken/1 + miniCParse:punctuationToken/1 + undefined:{}/1 + called from: + miniCParse:arithmeticFactor/2 + miniCParse:conditionalFactor/2 + miniCParse:numberToken/1 + +miniCParse:parenthesized/1 miniCParse.pro:430:436 + subgoals: + miniCParse:punctuationToken/1 + called from: + miniCParse:arithmeticFactor/2 + miniCParse:conditionalFactor/2 + miniCParse:function/3 + miniCParse:functionDeclaration/2 + +miniCParse:parseCheckpoint/0 miniCParse.pro:485:489 + subgoals: + miniCParse:(-)/2 + builtin:[]/0 + undefined:{}/1 + called from: + miniCParse:(-)/2 + miniCParse:definitions/1 + miniCParse:functionDefinitions/1 + miniCParse:globalDefinition/2 + miniCParse:statements/2 + +miniCParse:pluralized/3 miniCParse.pro:439:449 + subgoals: + builtin:[]/0 + miniCParse:pluralized/3 + undefined:{}/1 + called from: + miniCParse:pluralized/3 + miniCParse:pluralized/4 + +miniCParse:pluralized/4 miniCParse.pro:451:454 + subgoals: + builtin:[]/0 + miniCParse:pluralized/3 + undefined:{}/1 + called from: + miniCParse:typedArguments/1 + +miniCParse:processSource/2 miniCParse.pro:495:504 + subgoals: + builtin:(\+)/1 + builtin:append/3 + builtin:atom_codes/2 + no callers + +miniCParse:punctuationToken/1 miniCParse.pro:479:481 + subgoals: + builtin:./2 + miniCParse:comments/0 + called from: + miniCParse:argument/2 + miniCParse:arguments/2 + miniCParse:arithmeticExpression/2 + miniCParse:arithmeticExpression/3 + miniCParse:arithmeticFactor/2 + miniCParse:arithmeticTerm/2 + miniCParse:arithmeticTerm/3 + miniCParse:comments/0 + miniCParse:conditionalExpression/2 + miniCParse:conditionalFactor/2 + miniCParse:conditionalTerm/2 + miniCParse:curlyBracketed/1 + miniCParse:externalFunction/4 + miniCParse:globalDefinition/2 + miniCParse:numberToken/1 + miniCParse:parenthesized/1 + miniCParse:statement/1 + miniCParse:statement/2 + miniCParse:variableName/1 + +miniCParse:statement/1 miniCParse.pro:154:159 + subgoals: + miniCParse:alphanumericToken/1 + miniCParse:dataType/1 + miniCParse:externalFunction/4 + miniCParse:punctuationToken/1 + miniCParse:stringToken/1 + miniCParse:variableInstance/1 + undefined:{}/1 + called from: + miniCParse:globalDefinition/2 + +miniCParse:statement/2 miniCParse.pro:159:165 + subgoals: + miniCParse:alphanumericToken/1 + miniCParse:argument/2 + miniCParse:arithmeticFunction/2 + miniCParse:function/2 + miniCParse:function/3 + miniCParse:punctuationToken/1 + miniCParse:variableInstance/1 + undefined:{}/1 + no callers + +miniCParse:statements/2 miniCParse.pro:94:98 + subgoals: + miniCParse:(-)/2 + builtin:[]/0 + miniCParse:controlStatement/2 + undefined:multilineComment/0 + miniCParse:parseCheckpoint/0 + miniCParse:statements/2 + undefined:{}/1 + called from: + miniCParse:caseStatements/2 + miniCParse:statements/2 + +miniCParse:stringToken/1 miniCParse.pro:481:483 + subgoals: + builtin:./2 + miniCParse:comments/0 + called from: + miniCParse:argument/2 + miniCParse:conditionalFactor/2 + miniCParse:statement/1 + +miniCParse:structureDefinition/1 miniCParse.pro:87:94 + subgoals: + miniCParse:alphanumericToken/1 + miniCParse:curlyBracketed/1 + no callers + +miniCParse:substringException/2 miniCParse.pro:507:513 + subgoals: + builtin: = /2 + miniCParse:changeToSetList/3 + no callers + +miniCParse:switchToSetInstance/2 miniCParse.pro:209:213 + no subgoals + no callers + +miniCParse:token/1 miniCParse.pro:483:485 + subgoals: + builtin:./2 + miniCParse:comments/0 + called from: + miniCParse:miniCTokens/1 + +miniCParse:typedArguments/1 miniCParse.pro:246:249 + subgoals: + miniCParse:pluralized/4 + no callers + +miniCParse:uncapitalizedAlphanumericToken/1 miniCParse.pro:477:479 + subgoals: + builtin:./2 + miniCParse:comments/0 + called from: + miniCParse:alphanumericToken/1 + miniCParse:dataType/1 + miniCParse:function/3 + miniCParse:functionDeclaration/2 + +miniCParse:variableInstance/1 miniCParse.pro:406:419 + subgoals: + miniCParse:variableName/1 + called from: + miniCParse:argument/2 + miniCParse:arithmeticFactor/2 + miniCParse:conditionalFactor/2 + miniCParse:statement/1 + miniCParse:statement/2 + +miniCParse:variableName/1 miniCParse.pro:425:428 + subgoals: + miniCParse:alphanumericToken/1 + miniCParse:punctuationToken/1 + miniCParse:variableName/1 + called from: + miniCParse:variableInstance/1 + miniCParse:variableName/1 + +miniCParse:writeList/1 miniCParse.pro:504:506 + subgoals: + log:log/2 + builtin:nl/0 + miniCParse:writeList/1 + called from: + miniCParse:writeList/1 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro + +miniCobolParse:(-)/2 miniCobolParse.pro:156:182 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:paragraphs/3 + miniCobolParse:punctuationToken/1 + miniCobolParse:sections/3 + miniCobolParse:statements/3 + undefined:{}/1 + called from: + miniCobolParse:controlStatement/3 + miniCobolParse:parseCheckpoint/0 + miniCobolParse:statements/3 + +miniCobolParse:addTo/1 miniCobolParse.pro:700:703 + subgoals: + miniCobolParse:addedNumbers/1 + miniCobolParse:alphanumericToken/1 + miniCobolParse:numberOrVariable/1 + miniCobolParse:variableInstance/1 + called from: + miniCobolParse:assignmentStatement/1 + +miniCobolParse:addedNumbers/1 miniCobolParse.pro:707:710 + subgoals: + miniCobolParse:addedNumbers/1 + miniCobolParse:numberOrVariable/1 + called from: + miniCobolParse:addTo/1 + miniCobolParse:addedNumbers/1 + miniCobolParse:subtractFrom/1 + +miniCobolParse:alphanumericToken/1 miniCobolParse.pro:843:845 + subgoals: + builtin:./2 + called from: + miniCobolParse:(-)/2 + miniCobolParse:addTo/1 + miniCobolParse:compute/1 + miniCobolParse:conditionalExpression/1 + miniCobolParse:conditionalFactor/1 + miniCobolParse:conditionalTerm/1 + miniCobolParse:condtionalFactor/1 + miniCobolParse:configurationSec/2 + miniCobolParse:controlStatement/3 + miniCobolParse:dataDiv/4 + miniCobolParse:divideInto/1 + miniCobolParse:environmentDiv/3 + miniCobolParse:fileControl/1 + miniCobolParse:fileDirectory/4 + miniCobolParse:fileSection/4 + miniCobolParse:identificationDiv/1 + miniCobolParse:inputOutputSec/1 + miniCobolParse:move/1 + miniCobolParse:multiplyBy/1 + miniCobolParse:pictureClause/1 + miniCobolParse:pictureType/1 + miniCobolParse:procedureDiv/3 + miniCobolParse:procedureDivArg/1 + miniCobolParse:programId/1 + miniCobolParse:statement/2 + miniCobolParse:subtractFrom/1 + miniCobolParse:variableName/1 + miniCobolParse:workingStorageSec/2 + miniCobolParse:workingStorageStatement/3 + +miniCobolParse:argument/1 miniCobolParse.pro:573:576 + subgoals: + miniCobolParse:numberToken/1 + miniCobolParse:stringToken/1 + miniCobolParse:variableInstance/1 + called from: + miniCobolParse:arguments/1 + miniCobolParse:move/1 + miniCobolParse:statement/2 + +miniCobolParse:arguments/1 miniCobolParse.pro:567:571 + subgoals: + builtin:[]/0 + miniCobolParse:argument/1 + miniCobolParse:arguments/1 + called from: + miniCobolParse:arguments/1 + miniCobolParse:statement/2 + +miniCobolParse:arithmeticExpression/1 miniCobolParse.pro:715:721 + subgoals: + miniCobolParse:arithmeticExpression/1 + miniCobolParse:arithmeticExpression/2 + miniCobolParse:arithmeticFactor/1 + miniCobolParse:arithmeticTerm/1 + miniCobolParse:punctuationToken/1 + called from: + miniCobolParse:arithmeticExpression/1 + miniCobolParse:arithmeticExpression/2 + miniCobolParse:compute/1 + miniCobolParse:conditionalFactor/1 + +miniCobolParse:arithmeticExpression/2 miniCobolParse.pro:721:723 + subgoals: + miniCobolParse:arithmeticExpression/1 + miniCobolParse:arithmeticExpression/2 + miniCobolParse:arithmeticTerm/1 + miniCobolParse:punctuationToken/1 + called from: + miniCobolParse:arithmeticExpression/1 + miniCobolParse:arithmeticExpression/2 + +miniCobolParse:arithmeticFactor/1 miniCobolParse.pro:749:752 + subgoals: + miniCobolParse:arithmeticFactor/1 + miniCobolParse:numberToken/1 + miniCobolParse:parenthesized/1 + miniCobolParse:punctuationToken/1 + miniCobolParse:variableInstance/1 + called from: + miniCobolParse:arithmeticExpression/1 + miniCobolParse:arithmeticFactor/1 + miniCobolParse:arithmeticTerm/1 + miniCobolParse:arithmeticTerm/2 + +miniCobolParse:arithmeticTerm/1 miniCobolParse.pro:734:738 + subgoals: + miniCobolParse:arithmeticFactor/1 + miniCobolParse:arithmeticTerm/1 + miniCobolParse:arithmeticTerm/2 + miniCobolParse:punctuationToken/1 + called from: + miniCobolParse:arithmeticExpression/1 + miniCobolParse:arithmeticExpression/2 + miniCobolParse:arithmeticTerm/1 + miniCobolParse:arithmeticTerm/2 + +miniCobolParse:arithmeticTerm/2 miniCobolParse.pro:738:740 + subgoals: + miniCobolParse:arithmeticFactor/1 + miniCobolParse:arithmeticTerm/1 + miniCobolParse:arithmeticTerm/2 + miniCobolParse:punctuationToken/1 + called from: + miniCobolParse:arithmeticTerm/1 + miniCobolParse:arithmeticTerm/2 + +miniCobolParse:assignmentStatement/1 miniCobolParse.pro:670:674 + subgoals: + miniCobolParse:addTo/1 + miniCobolParse:compute/1 + miniCobolParse:divideInto/1 + miniCobolParse:move/1 + miniCobolParse:multiplyBy/1 + miniCobolParse:subtractFrom/1 + called from: + miniCobolParse:statement/2 + +miniCobolParse:compute/1 miniCobolParse.pro:712:715 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:arithmeticExpression/1 + miniCobolParse:punctuationToken/1 + miniCobolParse:variableInstance/1 + called from: + miniCobolParse:assignmentStatement/1 + +miniCobolParse:conditionalExpression/1 miniCobolParse.pro:599:603 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:conditionalExpression/1 + miniCobolParse:conditionalTerm/1 + called from: + miniCobolParse:conditionalExpression/1 + miniCobolParse:statement/2 + +miniCobolParse:conditionalFactor/1 miniCobolParse.pro:610:613 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:arithmeticExpression/1 + miniCobolParse:punctuationToken/1 + miniCobolParse:stringOrVariable/1 + called from: + miniCobolParse:conditionalTerm/1 + +miniCobolParse:conditionalTerm/1 miniCobolParse.pro:605:608 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:conditionalFactor/1 + miniCobolParse:conditionalTerm/1 + called from: + miniCobolParse:conditionalExpression/1 + miniCobolParse:conditionalTerm/1 + +miniCobolParse:condtionalFactor/1 miniCobolParse.pro:647:649 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:stringOrVariable/1 + no callers + +miniCobolParse:configurationSec/2 miniCobolParse.pro:50:55 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:punctuationToken/1 + miniCobolParse:whiteSpaceToken/1 + called from: + miniCobolParse:environmentDiv/3 + +miniCobolParse:controlStatement/3 miniCobolParse.pro:242:274 + subgoals: + miniCobolParse:(-)/2 + miniCobolParse:alphanumericToken/1 + undefined:{}/1 + called from: + miniCobolParse:statements/3 + +miniCobolParse:curlyBracketed/1 miniCobolParse.pro:803:806 + subgoals: + miniCobolParse:punctuationToken/1 + no callers + +miniCobolParse:dataDiv/4 miniCobolParse.pro:77:84 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:fileSection/4 + miniCobolParse:punctuationToken/1 + miniCobolParse:whiteSpaceToken/1 + miniCobolParse:workingStorageSec/2 + undefined:{}/1 + called from: + miniCobolParse:definitions/1 + +miniCobolParse:definitions/1 miniCobolParse.pro:23:38 + subgoals: + miniCobolParse:dataDiv/4 + miniCobolParse:environmentDiv/3 + miniCobolParse:identificationDiv/1 + miniCobolParse:parseCheckpoint/0 + miniCobolParse:procedureDiv/3 + no callers + +miniCobolParse:divideInto/1 miniCobolParse.pro:690:693 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:numberOrVariable/1 + miniCobolParse:variableInstance/1 + called from: + miniCobolParse:assignmentStatement/1 + +miniCobolParse:environmentDiv/3 miniCobolParse.pro:45:50 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:configurationSec/2 + miniCobolParse:inputOutputSec/1 + miniCobolParse:punctuationToken/1 + miniCobolParse:whiteSpaceToken/1 + called from: + miniCobolParse:definitions/1 + +miniCobolParse:equalsSetInstance/1 miniCobolParse.pro:593:597 + subgoals: + builtin: = /2 + no callers + +miniCobolParse:fileControl/1 miniCobolParse.pro:69:77 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:punctuationToken/1 + miniCobolParse:stringToken/1 + called from: + miniCobolParse:fileControls/1 + +miniCobolParse:fileControls/1 miniCobolParse.pro:62:67 + subgoals: + builtin:[]/0 + miniCobolParse:fileControl/1 + miniCobolParse:fileControls/1 + miniCobolParse:parseCheckpoint/0 + called from: + miniCobolParse:fileControls/1 + miniCobolParse:inputOutputSec/1 + +miniCobolParse:fileDirectories/4 miniCobolParse.pro:90:97 + subgoals: + builtin:[]/0 + miniCobolParse:fileDirectories/4 + miniCobolParse:fileDirectory/4 + miniCobolParse:parseCheckpoint/0 + undefined:{}/1 + called from: + miniCobolParse:fileDirectories/4 + miniCobolParse:fileSection/4 + +miniCobolParse:fileDirectory/4 miniCobolParse.pro:99:106 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:punctuationToken/1 + miniCobolParse:workingStorageStatement/3 + undefined:{}/1 + called from: + miniCobolParse:fileDirectories/4 + +miniCobolParse:fileSection/4 miniCobolParse.pro:84:88 + subgoals: + builtin:[]/0 + miniCobolParse:alphanumericToken/1 + miniCobolParse:fileDirectories/4 + miniCobolParse:punctuationToken/1 + called from: + miniCobolParse:dataDiv/4 + +miniCobolParse:getFileDefinitionsCobol/2 miniCobolParse.pro:19:23 + subgoals: + undefined:definitions/3 + tokenize:tokens/3 + called from: + executeMiniProgram:parseMiniCobol/2 + +miniCobolParse:identificationDiv/1 miniCobolParse.pro:38:42 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:programId/1 + miniCobolParse:punctuationToken/1 + miniCobolParse:whiteSpaceToken/1 + called from: + miniCobolParse:definitions/1 + +miniCobolParse:inputOutputSec/1 miniCobolParse.pro:55:60 + subgoals: + builtin:[]/0 + miniCobolParse:alphanumericToken/1 + miniCobolParse:fileControls/1 + miniCobolParse:punctuationToken/1 + called from: + miniCobolParse:environmentDiv/3 + +miniCobolParse:miniCobolTokens/1 miniCobolParse.pro:827:832 + subgoals: + builtin:[]/0 + miniCobolParse:miniCobolTokens/1 + miniCobolParse:token/1 + called from: + miniCobolParse:miniCobolTokens/1 + +miniCobolParse:move/1 miniCobolParse.pro:684:687 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:argument/1 + miniCobolParse:variableInstance/1 + called from: + miniCobolParse:assignmentStatement/1 + +miniCobolParse:multiplyBy/1 miniCobolParse.pro:687:690 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:numberOrVariable/1 + miniCobolParse:variableInstance/1 + called from: + miniCobolParse:assignmentStatement/1 + +miniCobolParse:numberOrVariable/1 miniCobolParse.pro:758:763 + subgoals: + miniCobolParse:numberToken/1 + miniCobolParse:variableInstance/1 + called from: + miniCobolParse:addTo/1 + miniCobolParse:addedNumbers/1 + miniCobolParse:divideInto/1 + miniCobolParse:multiplyBy/1 + miniCobolParse:subtractFrom/1 + +miniCobolParse:numberToken/1 miniCobolParse.pro:837:841 + subgoals: + builtin:./2 + miniCobolParse:numberToken/1 + miniCobolParse:punctuationToken/1 + undefined:{}/1 + called from: + miniCobolParse:argument/1 + miniCobolParse:arithmeticFactor/1 + miniCobolParse:numberOrVariable/1 + miniCobolParse:numberToken/1 + miniCobolParse:outputArgument/1 + miniCobolParse:pictureType/1 + miniCobolParse:workingStorageStatement/3 + +miniCobolParse:optional/1 miniCobolParse.pro:822:825 + subgoals: + builtin:[]/0 + no callers + +miniCobolParse:outputArgument/1 miniCobolParse.pro:585:589 + subgoals: + miniCobolParse:numberToken/1 + miniCobolParse:stringToken/1 + miniCobolParse:variableInstance/1 + undefined:{}/1 + called from: + miniCobolParse:outputArguments/1 + +miniCobolParse:outputArguments/1 miniCobolParse.pro:580:583 + subgoals: + builtin:[]/0 + miniCobolParse:outputArgument/1 + miniCobolParse:outputArguments/1 + called from: + miniCobolParse:outputArguments/1 + miniCobolParse:statement/2 + +miniCobolParse:paragraphs/3 miniCobolParse.pro:205:211 + subgoals: + builtin:[]/0 + undefined:paragraph/3 + miniCobolParse:paragraphs/3 + miniCobolParse:parseCheckpoint/0 + undefined:{}/1 + called from: + miniCobolParse:(-)/2 + miniCobolParse:paragraphs/3 + +miniCobolParse:parenthesized/1 miniCobolParse.pro:797:803 + subgoals: + miniCobolParse:punctuationToken/1 + called from: + miniCobolParse:arithmeticFactor/1 + +miniCobolParse:parseCheckpoint/0 miniCobolParse.pro:858:861 + subgoals: + miniCobolParse:(-)/2 + builtin:[]/0 + undefined:{}/1 + called from: + miniCobolParse:definitions/1 + miniCobolParse:fileControls/1 + miniCobolParse:fileDirectories/4 + miniCobolParse:paragraphs/3 + miniCobolParse:sections/3 + miniCobolParse:statements/3 + miniCobolParse:workingStorageStatements/3 + +miniCobolParse:pictureClause/1 miniCobolParse.pro:130:133 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:pictureType/1 + called from: + miniCobolParse:workingStorageStatement/3 + +miniCobolParse:pictureType/1 miniCobolParse.pro:135:138 + subgoals: + builtin:[]/0 + miniCobolParse:alphanumericToken/1 + miniCobolParse:numberToken/1 + miniCobolParse:pictureType/1 + miniCobolParse:punctuationToken/1 + called from: + miniCobolParse:pictureClause/1 + miniCobolParse:pictureType/1 + +miniCobolParse:pluralized/3 miniCobolParse.pro:806:815 + subgoals: + builtin:[]/0 + miniCobolParse:pluralized/3 + undefined:{}/1 + called from: + miniCobolParse:pluralized/3 + miniCobolParse:pluralized/4 + +miniCobolParse:pluralized/4 miniCobolParse.pro:817:820 + subgoals: + builtin:[]/0 + miniCobolParse:pluralized/3 + undefined:{}/1 + no callers + +miniCobolParse:procedureDiv/3 miniCobolParse.pro:146:151 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:procedureDivArgs/1 + undefined:procedureDivBody/4 + miniCobolParse:punctuationToken/1 + miniCobolParse:whiteSpaceToken/1 + undefined:{}/1 + called from: + miniCobolParse:definitions/1 + +miniCobolParse:procedureDivArg/1 miniCobolParse.pro:188:191 + subgoals: + miniCobolParse:alphanumericToken/1 + called from: + miniCobolParse:procedureDivArgs/1 + +miniCobolParse:procedureDivArgs/1 miniCobolParse.pro:182:185 + subgoals: + builtin:[]/0 + miniCobolParse:procedureDivArg/1 + miniCobolParse:procedureDivArgs/1 + called from: + miniCobolParse:procedureDiv/3 + miniCobolParse:procedureDivArgs/1 + +miniCobolParse:processSource/2 miniCobolParse.pro:867:873 + subgoals: + builtin:(\+)/1 + builtin:append/3 + builtin:atom_codes/2 + no callers + +miniCobolParse:programId/1 miniCobolParse.pro:42:45 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:punctuationToken/1 + miniCobolParse:whiteSpaceToken/1 + called from: + miniCobolParse:identificationDiv/1 + +miniCobolParse:punctuationToken/1 miniCobolParse.pro:847:849 + subgoals: + builtin:./2 + called from: + miniCobolParse:(-)/2 + miniCobolParse:arithmeticExpression/1 + miniCobolParse:arithmeticExpression/2 + miniCobolParse:arithmeticFactor/1 + miniCobolParse:arithmeticTerm/1 + miniCobolParse:arithmeticTerm/2 + miniCobolParse:compute/1 + miniCobolParse:conditionalFactor/1 + miniCobolParse:configurationSec/2 + miniCobolParse:curlyBracketed/1 + miniCobolParse:dataDiv/4 + miniCobolParse:environmentDiv/3 + miniCobolParse:fileControl/1 + miniCobolParse:fileDirectory/4 + miniCobolParse:fileSection/4 + miniCobolParse:identificationDiv/1 + miniCobolParse:inputOutputSec/1 + miniCobolParse:numberToken/1 + miniCobolParse:parenthesized/1 + miniCobolParse:pictureType/1 + miniCobolParse:procedureDiv/3 + miniCobolParse:programId/1 + miniCobolParse:statements/3 + miniCobolParse:workingStorageSec/2 + miniCobolParse:workingStorageStatement/3 + +miniCobolParse:sections/3 miniCobolParse.pro:191:199 + subgoals: + builtin:[]/0 + miniCobolParse:parseCheckpoint/0 + undefined:section/3 + miniCobolParse:sections/3 + undefined:{}/1 + called from: + miniCobolParse:(-)/2 + miniCobolParse:sections/3 + +miniCobolParse:statement/2 miniCobolParse.pro:286:306 + subgoals: + builtin: = /2 + miniCobolParse:alphanumericToken/1 + miniCobolParse:argument/1 + miniCobolParse:arguments/1 + miniCobolParse:assignmentStatement/1 + miniCobolParse:conditionalExpression/1 + miniCobolParse:outputArguments/1 + miniCobolParse:stringToken/1 + miniCobolParse:varInArguments/1 + miniCobolParse:varOutArguments/2 + miniCobolParse:variableInstance/1 + undefined:{}/1 + no callers + +miniCobolParse:statements/3 miniCobolParse.pro:219:225 + subgoals: + miniCobolParse:(-)/2 + builtin:[]/0 + miniCobolParse:controlStatement/3 + miniCobolParse:parseCheckpoint/0 + miniCobolParse:punctuationToken/1 + undefined:statement/1 + miniCobolParse:statements/3 + undefined:{}/1 + called from: + miniCobolParse:(-)/2 + miniCobolParse:statements/3 + +miniCobolParse:stringOrVariable/1 miniCobolParse.pro:765:768 + subgoals: + miniCobolParse:stringToken/1 + miniCobolParse:variableInstance/1 + called from: + miniCobolParse:conditionalFactor/1 + miniCobolParse:condtionalFactor/1 + +miniCobolParse:stringToken/1 miniCobolParse.pro:849:851 + subgoals: + builtin:./2 + called from: + miniCobolParse:argument/1 + miniCobolParse:fileControl/1 + miniCobolParse:outputArgument/1 + miniCobolParse:statement/2 + miniCobolParse:stringOrVariable/1 + +miniCobolParse:subtractFrom/1 miniCobolParse.pro:693:696 + subgoals: + miniCobolParse:addedNumbers/1 + miniCobolParse:alphanumericToken/1 + miniCobolParse:numberOrVariable/1 + miniCobolParse:variableInstance/1 + called from: + miniCobolParse:assignmentStatement/1 + +miniCobolParse:switchToSetInstance/2 miniCobolParse.pro:597:599 + no subgoals + no callers + +miniCobolParse:token/1 miniCobolParse.pro:834:837 + subgoals: + builtin:./2 + undefined:{}/1 + called from: + miniCobolParse:miniCobolTokens/1 + +miniCobolParse:uncapitalizedAlphanumericToken/1 miniCobolParse.pro:845:847 + subgoals: + builtin:./2 + no callers + +miniCobolParse:varInArgument/1 miniCobolParse.pro:555:558 + subgoals: + miniCobolParse:variableInstance/1 + undefined:{}/1 + called from: + miniCobolParse:varInArguments/1 + +miniCobolParse:varInArguments/1 miniCobolParse.pro:551:555 + subgoals: + builtin:[]/0 + miniCobolParse:varInArgument/1 + miniCobolParse:varInArguments/1 + called from: + miniCobolParse:statement/2 + miniCobolParse:varInArguments/1 + +miniCobolParse:varOutArgument/2 miniCobolParse.pro:563:565 + subgoals: + undefined:{}/1 + called from: + miniCobolParse:varOutArguments/2 + +miniCobolParse:varOutArguments/2 miniCobolParse.pro:560:563 + subgoals: + builtin:[]/0 + miniCobolParse:varOutArgument/2 + miniCobolParse:varOutArguments/2 + called from: + miniCobolParse:statement/2 + miniCobolParse:varOutArguments/2 + +miniCobolParse:variableInstance/1 miniCobolParse.pro:770:785 + subgoals: + miniCobolParse:variableName/1 + undefined:{}/1 + called from: + miniCobolParse:addTo/1 + miniCobolParse:argument/1 + miniCobolParse:arithmeticFactor/1 + miniCobolParse:compute/1 + miniCobolParse:divideInto/1 + miniCobolParse:move/1 + miniCobolParse:multiplyBy/1 + miniCobolParse:numberOrVariable/1 + miniCobolParse:outputArgument/1 + miniCobolParse:statement/2 + miniCobolParse:stringOrVariable/1 + miniCobolParse:subtractFrom/1 + miniCobolParse:varInArgument/1 + miniCobolParse:workingStorageStatement/3 + +miniCobolParse:variableName/1 miniCobolParse.pro:794:797 + subgoals: + miniCobolParse:alphanumericToken/1 + called from: + miniCobolParse:variableInstance/1 + +miniCobolParse:whiteSpaceToken/1 miniCobolParse.pro:851:856 + subgoals: + builtin:./2 + builtin:[]/0 + called from: + miniCobolParse:configurationSec/2 + miniCobolParse:dataDiv/4 + miniCobolParse:environmentDiv/3 + miniCobolParse:identificationDiv/1 + miniCobolParse:procedureDiv/3 + miniCobolParse:programId/1 + miniCobolParse:workingStorageSec/2 + +miniCobolParse:workingStorageSec/2 miniCobolParse.pro:106:111 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:punctuationToken/1 + miniCobolParse:whiteSpaceToken/1 + miniCobolParse:workingStorageStatements/3 + undefined:{}/1 + called from: + miniCobolParse:dataDiv/4 + +miniCobolParse:workingStorageStatement/3 miniCobolParse.pro:120:125 + subgoals: + miniCobolParse:alphanumericToken/1 + miniCobolParse:numberToken/1 + miniCobolParse:pictureClause/1 + miniCobolParse:punctuationToken/1 + miniCobolParse:variableInstance/1 + miniCobolParse:workingStorageStatements/3 + undefined:{}/1 + called from: + miniCobolParse:fileDirectory/4 + miniCobolParse:workingStorageStatements/3 + +miniCobolParse:workingStorageStatements/3 miniCobolParse.pro:111:118 + subgoals: + builtin:[]/0 + miniCobolParse:parseCheckpoint/0 + miniCobolParse:workingStorageStatement/3 + miniCobolParse:workingStorageStatements/3 + undefined:{}/1 + called from: + miniCobolParse:workingStorageSec/2 + miniCobolParse:workingStorageStatement/3 + miniCobolParse:workingStorageStatements/3 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro + +ontology:bridge/2 OntologyInterface.pro:103:107 + subgoals: + ontology:getDomain/1 + undefined:internalBridge/3 + called from: + ontology:getConceptFromColumnName/3 + ontology:getField/2 + +ontology:cleanUpOntologyFacts/0 OntologyInterface.pro:65:77 + subgoals: + ontology:getDomain/1 + builtin:retractall/1 + called from: + ontology:instantiateFactsFromPath/1 + sessionManager:cleanUpRepresentations/0 + sessionManager:reloadRepresentation/2 + +ontology:convertTclScreenToOntologyName/2 OntologyInterface.pro:286:290 + subgoals: + builtin:append/3 + solsticeUtility:appendCharListWithCharacter/3 + builtin:assert/1 + builtin:atom_codes/2 + builtin:atom_concat/3 + ontology:getDomain/1 + ontology:isUpperOrDash/1 + solsticeUtility:splitCharacterCodesOnPredicate/4 + solsticeUtility:toLower/2 + ontology:wordToCapitalizedWord/2 + called from: + ontology:getConceptFromScreen/3 + +ontology:convertToRepresentation/1 OntologyInterface.pro:31:40 + subgoals: + builtin: = /2 + builtin:close/1 + ontology:createRepresentation/2 + ontology:getDomain/1 + builtin:open/3 + builtin:sub_atom/5 + called from: + ontology:instantiateFactsFromPath/1 + +ontology:createRepresentation/2 OntologyInterface.pro:55:63 + subgoals: + builtin:(\+)/1 + builtin:assert/1 + ontology:createRepresentation/2 + builtin:read/2 + called from: + ontology:convertToRepresentation/1 + ontology:createRepresentation/2 + +ontology:getColumnNameNodeString/2 OntologyInterface.pro:256:268 + subgoals: + builtin:append/3 + solsticeUtility:appendCharListWithCharacter/3 + builtin:atom_codes/2 + builtin:atom_concat/3 + solsticeUtility:splitCharacterCodesOnPredicate/4 + solsticeUtility:toLower/2 + ontology:wordToCapitalizedWord/2 + called from: + ontology:getConceptFromColumnName/3 + +ontology:getConceptFromColumnName/3 OntologyInterface.pro:240:250 + subgoals: + builtin:atom_concat/3 + ontology:bridge/2 + ontology:getColumnNameNodeString/2 + ontology:isA/2 + called from: + applicationFunction:getConcept/5 + applicationFunction:retrieveConceptByStmt/3 + +ontology:getConceptFromFile/3 OntologyInterface.pro:208:219 + subgoals: + ontology:getField/2 + ontology:getFileNodeString/3 + called from: + applicationFunction:getConcept/5 + applicationFunction:retrieveConceptByStmt/3 + +ontology:getConceptFromScreen/3 OntologyInterface.pro:268:281 + subgoals: + ontology:convertTclScreenToOntologyName/2 + ontology:getField/2 + ontology:getScreenNodeString/3 + ontology:handleNumberConversion/1 + called from: + applicationFunction:getConcept/5 + applicationFunction:retrieveConceptByStmt/3 + +ontology:getDomain/1 OntologyInterface.pro:63:65 + no subgoals + called from: + ontology:bridge/2 + ontology:cleanUpOntologyFacts/0 + ontology:convertTclScreenToOntologyName/2 + ontology:convertToRepresentation/1 + ontology:hasA/2 + ontology:isA/2 + +ontology:getField/2 OntologyInterface.pro:219:230 + subgoals: + ontology:bridge/2 + ontology:hasA/2 + ontology:isA/2 + called from: + ontology:getConceptFromFile/3 + ontology:getConceptFromScreen/3 + ontology:getKeyConceptFromFile/3 + +ontology:getFileKeyNodeString/3 OntologyInterface.pro:235:240 + subgoals: + builtin:atom_concat/3 + ontology:number_to_atom/2 + called from: + ontology:getKeyConceptFromFile/3 + +ontology:getFileNodeString/3 OntologyInterface.pro:230:235 + subgoals: + builtin:atom_concat/3 + ontology:number_to_atom/2 + called from: + ontology:getConceptFromFile/3 + ontology:getMinMaxFromFile/4 + +ontology:getKeyConceptFromFile/3 OntologyInterface.pro:191:208 + subgoals: + ontology:getField/2 + ontology:getFileKeyNodeString/3 + called from: + applicationFunction:getConcept/5 + applicationFunction:retrieveConceptByStmt/3 + +ontology:getMaxFileSize/2 OntologyInterface.pro:112:130 + subgoals: + builtin:atom_concat/3 + ontology:hasA/2 + ontology:isA/2 + no callers + +ontology:getMinMax/3 OntologyInterface.pro:160:168 + subgoals: + ontology:getMinMaxFromAtom/3 + ontology:hasA/2 + ontology:isA/2 + called from: + ontology:getMinMaxFromFile/4 + ontology:getMinMaxFromScreen/4 + +ontology:getMinMaxFromAtom/3 OntologyInterface.pro:168:172 + subgoals: + solsticeUtility:splitAtom/3 + called from: + ontology:getMinMax/3 + +ontology:getMinMaxFromFile/4 OntologyInterface.pro:130:148 + subgoals: + ontology:getFileNodeString/3 + ontology:getMinMax/3 + no callers + +ontology:getMinMaxFromScreen/4 OntologyInterface.pro:148:160 + subgoals: + ontology:getMinMax/3 + ontology:getScreenNodeString/3 + no callers + +ontology:getPathInOntology/2 OntologyInterface.pro:174:186 + subgoals: + ontology:getPathInOntologyHelper/3 + lists:rev/2 + no callers + +ontology:getPathInOntologyHelper/3 OntologyInterface.pro:186:190 + subgoals: + ontology:getPathInOntologyHelper/3 + ontology:isA/2 + called from: + ontology:getPathInOntology/2 + ontology:getPathInOntologyHelper/3 + +ontology:getScreenNodeString/3 OntologyInterface.pro:327:333 + subgoals: + builtin:atom_concat/3 + ontology:number_to_atom/2 + called from: + ontology:getConceptFromScreen/3 + ontology:getMinMaxFromScreen/4 + +ontology:handleNumberConversion/1 OntologyInterface.pro:352:355 + subgoals: + builtin:throw/1 + called from: + ontology:getConceptFromScreen/3 + +ontology:hasA/2 OntologyInterface.pro:89:93 + subgoals: + ontology:getDomain/1 + ontology:internalHasA/3 + called from: + logicTranslator:traverseOntology/3 + ontology:getField/2 + ontology:getMaxFileSize/2 + ontology:getMinMax/3 + rankingFunction:getFileSizeFromOntology/2 + +ontology:instantiateFactsFromPath/1 OntologyInterface.pro:20:31 + subgoals: + ontology:cleanUpOntologyFacts/0 + ontology:convertToRepresentation/1 + file_systems:file_members_of_directory/2 + called from: + sessionManager:assertRepresentations/0 + sessionManager:reloadRepresentation/2 + +ontology:internalHasA/3 OntologyInterface.pro:93:96 + subgoals: + builtin:;/2 + undefined:internalIsA/3 + called from: + ontology:hasA/2 + +ontology:isA/2 OntologyInterface.pro:77:81 + subgoals: + ontology:getDomain/1 + undefined:internalIsA/3 + called from: + logicTranslator:traverseOntology/3 + ontology:getConceptFromColumnName/3 + ontology:getField/2 + ontology:getMaxFileSize/2 + ontology:getMinMax/3 + ontology:getPathInOntologyHelper/3 + rankingFunction:getFileSizeFromOntology/2 + +ontology:isUpperOrDash/1 OntologyInterface.pro:345:348 + subgoals: + solsticeUtility:isDash/1 + solsticeUtility:isUpper/1 + called from: + ontology:convertTclScreenToOntologyName/2 + +ontology:number_to_atom/2 OntologyInterface.pro:355:366 + subgoals: + builtin:atom_codes/2 + builtin:number_codes/2 + called from: + ontology:getFileKeyNodeString/3 + ontology:getFileNodeString/3 + ontology:getScreenNodeString/3 + +ontology:wordToCapitalizedWord/2 OntologyInterface.pro:333:345 + subgoals: + builtin: = /2 + builtin:append/3 + solsticeUtility:isDash/1 + solsticeUtility:toLower/2 + solsticeUtility:toUpper/2 + called from: + ontology:convertTclScreenToOntologyName/2 + ontology:getColumnNameNodeString/2 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro + +operators:(?)/1 operators.pro:26:36 + subgoals: + builtin:call/1 + log:logq/2 + builtin:nl/0 + called from: + operators:(?)/3 + +operators:(?)/3 operators.pro:36:42 + subgoals: + builtin: =.. /2 + operators:(?)/1 + builtin:append/3 + no callers + +operators:called/2 dynamic operators.pro:0:0 + modified in: + operators:(count)/1 + no subgoals + no callers + +operators:(count)/1 operators.pro:11:22 + subgoals: + builtin: =.. /2 + builtin:call/1 + builtin:is/2 + assert-operators:called/2 + retract-operators:called/2 + called from: + operators:countDown/1 + +operators:countDown/1 operators.pro:46:48 + subgoals: + operators:(count)/1 + builtin:is/2 + called from: + operators:go/0 + +operators:go/0 operators.pro:42:46 + subgoals: + operators:countDown/1 + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro + +preProcess:(:-)/1 preprocess.pro:9:11 + no subgoals + no callers + +preProcess:buildFolderPathFromList/3 preprocess.pro:64:66 + subgoals: + builtin:atom_concat/3 + preProcess:buildFolderPathFromList/3 + called from: + preProcess:buildFolderPathFromList/3 + preProcess:initializeDebug/2 + preProcess:runCfm/3 + preProcess:runDfm/3 + +preProcess:convertToRepresentation/2 preprocess.pro:176:181 + subgoals: + builtin:close/1 + preProcess:createRepresentation/3 + builtin:open/3 + called from: + preProcess:initializeDebug/2 + preProcess:loadModule/1 + preProcess:runCfm/3 + preProcess:runDfm/3 + +preProcess:createRepresentation/3 preprocess.pro:181:190 + subgoals: + builtin: = /2 + preProcess:createRepresentation/3 + builtin:read/2 + called from: + preProcess:convertToRepresentation/2 + preProcess:createRepresentation/3 + +preProcess:escapeValue/2 preprocess.pro:165:171 + subgoals: + builtin:atom/1 + builtin:atom_codes/2 + preProcess:escapedCodes/3 + called from: + preProcess:getValues/3 + +preProcess:escapedCodes/3 preprocess.pro:172:174 + subgoals: + builtin: = /2 + preProcess:escapedCodes/3 + builtin:member/2 + called from: + preProcess:escapeValue/2 + preProcess:escapedCodes/3 + +preProcess:fileAssert/1 preprocess.pro:206:209 + subgoals: + user:assert/1 + called from: + preProcess:initializeDebug/2 + preProcess:runCfm/3 + preProcess:runDfm/3 + +preProcess:findStartNode/2 preprocess.pro:195:201 + subgoals: + builtin: = /2 + builtin:member/2 + no callers + +preProcess:getState/2 preprocess.pro:90:93 + subgoals: + preProcess:outEnv/1 + preProcess:stepStack/1 + called from: + preProcess:step/2 + preProcess:stepRecurse/1 + +preProcess:getValues/3 preprocess.pro:157:160 + subgoals: + preProcess:escapeValue/2 + preProcess:getValues/3 + builtin:member/2 + called from: + preProcess:getValues/3 + preProcess:getVariableInformation/3 + +preProcess:getVariableInformation/3 preprocess.pro:148:157 + subgoals: + builtin:findall/3 + preProcess:getValues/3 + builtin:sort/2 + no callers + +preProcess:initializeDebug/2 preprocess.pro:96:118 + subgoals: + preProcess:buildFolderPathFromList/3 + preProcess:convertToRepresentation/2 + interpreter:deleteDuplicates/2 + preProcess:fileAssert/1 + semantics:findInitialNodes/3 + lists:last/2 + preProcess:loadEnvironment/2 + solsticeUtility:match/2 + builtin:member/2 + preProcess:saveState/2 + solsticeUtility:splitAtom/3 + assert-fileInformation:filePath/1 + assert-fileInformation:representationsPath/1 + assert-user:representation/2 + no callers + +preProcess:isAFile/2 preprocess.pro:201:206 + subgoals: + builtin:(\+)/1 + builtin:functor/3 + builtin:member/2 + no callers + +preProcess:loadEnvironment/2 preprocess.pro:190:195 + subgoals: + builtin:close/1 + builtin:open/3 + builtin:read/2 + called from: + preProcess:initializeDebug/2 + preProcess:runCfm/3 + preProcess:runDfm/3 + +preProcess:loadModule/1 preprocess.pro:71:76 + subgoals: + builtin:atom_concat/3 + preProcess:convertToRepresentation/2 + builtin:ground/1 + builtin:if/3 + builtin:member/2 + fileInformation:representationsPath/1 + user:representation/2 + assert-user:representation/2 + called from: + semantics:functionStep/4 + +preProcess:outEnv/1 dynamic preprocess.pro:0:0 + modified in: + preProcess:saveState/2 + no subgoals + called from: + preProcess:getState/2 + +preProcess:retractState/0 preprocess.pro:93:96 + subgoals: + builtin:retractall/1 + no callers + +preProcess:runCfm/3 preprocess.pro:18:41 + subgoals: + preProcess:buildFolderPathFromList/3 + solsticeUtility:cleanup/1 + preProcess:convertToRepresentation/2 + interpreter:deleteDuplicates/2 + preProcess:fileAssert/1 + semantics:findInitialNodes/3 + interpreter:interpret/4 + preProcess:loadEnvironment/2 + errorHandler:logError/1 + builtin:member/2 + solsticeUtility:splitAtom/3 + assert-fileInformation:fileOutputPath/1 + assert-fileInformation:filePath/1 + assert-fileInformation:representationsPath/1 + assert-user:representation/2 + no callers + +preProcess:runDfm/3 preprocess.pro:41:64 + subgoals: + preProcess:buildFolderPathFromList/3 + solsticeUtility:cleanup/1 + preProcess:convertToRepresentation/2 + interpreter:deleteDuplicates/2 + preProcess:fileAssert/1 + semantics:findInitialNodes/3 + interpreter:interpret/4 + preProcess:loadEnvironment/2 + errorHandler:logError/1 + builtin:member/2 + solsticeUtility:splitAtom/3 + assert-fileInformation:fileOutputPath/1 + assert-fileInformation:filePath/1 + assert-fileInformation:representationsPath/1 + assert-user:representation/2 + no callers + +preProcess:saveState/2 preprocess.pro:84:90 + subgoals: + builtin:retractall/1 + assert-preProcess:outEnv/1 + assert-preProcess:stepStack/1 + called from: + preProcess:initializeDebug/2 + preProcess:stepRecurse/1 + +preProcess:step/2 preprocess.pro:118:128 + subgoals: + preProcess:getState/2 + builtin:if/3 + solsticeUtility:match/2 + lists:nth0/3 + preProcess:stepRecurse/1 + no callers + +preProcess:stepRecurse/1 preprocess.pro:128:139 + subgoals: + interpreter:debug/5 + preProcess:getState/2 + builtin:if/3 + preProcess:saveState/2 + called from: + preProcess:step/2 + +preProcess:stepStack/1 dynamic preprocess.pro:0:0 + modified in: + preProcess:saveState/2 + no subgoals + called from: + preProcess:getState/2 + +preProcess:terminateDebug/2 preprocess.pro:139:148 + subgoals: + builtin:abolish/1 + solsticeUtility:cleanup/1 + solsticeUtility:match/2 + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/query_interface.pro + +query_interface:conjunction/6 query_interface.pro:137:140 + subgoals: + builtin: = /2 + query_interface:conjunction/6 + query_interface:constraint/5 + lists:is_list/1 + errorHandler:logError/1 + query_interface:overlap/3 + builtin:throw/1 + called from: + query_interface:conjunction/6 + query_interface:constraint/5 + query_interface:disjunction/5 + query_interface:query/4 + +query_interface:constraint/2 query_interface.pro:45:59 + no subgoals + called from: + query_interface:constraint/5 + +query_interface:constraint/5 query_interface.pro:167:175 + subgoals: + builtin: =.. /2 + query_interface:conjunction/6 + query_interface:constraint/2 + query_interface:constraintType/3 + builtin:findall/3 + query_interface:findallConstraint/6 + query_interface:predicate/2 + lists:remove_dups/2 + called from: + query_interface:conjunction/6 + query_interface:query/4 + +query_interface:constraintType/3 query_interface.pro:100:102 + no subgoals + called from: + query_interface:constraint/5 + +query_interface:constructMapTerm/6 query_interface.pro:91:97 + subgoals: + builtin: =.. /2 + called from: + query_interface:findallConstraint/6 + +query_interface:disjunction/5 query_interface.pro:151:154 + subgoals: + builtin: = /2 + builtin:(\+)/1 + lists:append/2 + query_interface:conjunction/6 + query_interface:disjunction/5 + errorHandler:logError/1 + lists:remove_dups/2 + builtin:throw/1 + called from: + query_interface:disjunction/5 + query_interface:query/4 + +query_interface:findallConstraint/6 query_interface.pro:184:187 + subgoals: + lists:append/2 + query_interface:constructMapTerm/6 + builtin:findall/3 + query_interface:findallConstraint/6 + query_interface:predicate/2 + called from: + query_interface:constraint/5 + query_interface:findallConstraint/6 + +query_interface:overlap/3 query_interface.pro:209:212 + subgoals: + builtin:member/2 + query_interface:overlap/3 + called from: + query_interface:conjunction/6 + query_interface:overlap/3 + +query_interface:predicate/2 query_interface.pro:193:198 + subgoals: + builtin: = /2 + builtin: =.. /2 + builtin:atom_codes/2 + builtin:atom_concat/3 + builtin:findall/3 + builtin:functor/3 + errorHandler:logError/1 + builtin:number_codes/2 + builtin:throw/1 + called from: + query_interface:constraint/5 + query_interface:findallConstraint/6 + +query_interface:query/4 query_interface.pro:119:123 + subgoals: + builtin: = /2 + builtin:(\+)/1 + query_interface:conjunction/6 + query_interface:constraint/5 + query_interface:disjunction/5 + lists:is_list/1 + errorHandler:logError/1 + builtin:throw/1 + called from: + query_interface:queryVerify/4 + +query_interface:queryVerify/4 query_interface.pro:15:45 + subgoals: + builtin:member/2 + query_interface:query/4 + called from: + appFnUtilities:getCursorSelectStmt/2 + applicationFunction:isAReadStatement/3 + applicationFunction:isAScreenStatement/3 + applicationFunction:isInLoop/2 + applicationFunction:resolveApplicationFunctions/6 + applicationFunction:resolveConeOfInfluence/5 + applicationFunction:retrieveConcept/2 + solsticeFileUtility:getFileNameAssignment/3 + solsticeFileUtility:resolveFileName/2 + +query_interface:readFileTerms/3 query_interface.pro:106:108 + subgoals: + builtin: = /2 + builtin:at_end_of_stream/1 + errorHandler:logError/1 + query_interface:readFileTerms/3 + builtin:read_term/3 + solsticeUtility:term_atom/2 + builtin:throw/1 + called from: + query_interface:readFileTerms/3 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/rankingFunction.pro + +rankingFunction:getFileSizeFromOntology/2 rankingFunction.pro:91:103 + subgoals: + builtin:atom_codes/2 + solsticeUtility:atom_concat/2 + builtin:atom_concat/3 + ontology:hasA/2 + ontology:isA/2 + builtin:number_codes/2 + called from: + rankingFunction:getVariableMaxIterations/10 + +rankingFunction:getMaxAndMinIterVarIsIncreasing/6 rankingFunction.pro:127:132 + subgoals: + builtin:is/2 + builtin:member/2 + solsticeUtility:subtermMember/2 + no callers + +rankingFunction:getNumIterations/8 rankingFunction.pro:15:59 + subgoals: + builtin: = /2 + builtin:do/2 + solsticeUtility:flattenList/2 + builtin:if/3 + undefined:smtFormula/3 + called from: + loopRewriter:rewriteLoop/7 + +rankingFunction:getVariableMaxIterations/10 rankingFunction.pro:66:91 + subgoals: + builtin:,/2 + builtin: = /2 + builtin: > /2 + builtin:atom_codes/2 + logicTranslationUtilities:drillIntoLoopBody/5 + builtin:findall/3 + rankingFunction:getFileSizeFromOntology/2 + builtin:if/3 + builtin:is/2 + builtin:member/2 + builtin:number_codes/2 + solsticeUtility:subtermMember/2 + no callers + +rankingFunction:maximum/3 rankingFunction.pro:59:64 + subgoals: + builtin:if/3 + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/reasoningEngine.pro + +reasoningEngine:appendPeriod/2 reasoningEngine.pro:62:65 + subgoals: + builtin:append/3 + called from: + reasoningEngine:resolveFeasibility/5 + +reasoningEngine:list_executed_nodes/3 reasoningEngine.pro:65:69 + subgoals: + reasoningEngine:list_executed_nodes/3 + called from: + reasoningEngine:list_executed_nodes/3 + reasoningEngine:resolveFeasibility/5 + reasoningEngine:resolveFeasibilityHelper/6 + reasoningEngine:resolveFeasibilityOfNode/5 + +reasoningEngine:resolveFeasibility/4 reasoningEngine.pro:15:18 + subgoals: + reasoningEngine:resolveFeasibility/5 + called from: + feasibilityService:feasibilityService/4 + +reasoningEngine:resolveFeasibility/5 reasoningEngine.pro:18:32 + subgoals: + builtin:(\+)/1 + builtin:append/3 + reasoningEngine:appendPeriod/2 + logicTranslator:formatConstraints/2 + reasoningEngine:list_executed_nodes/3 + logicTranslator:processAllNodes/3 + undefined:read_from_codes/2 + reasoningEngine:resolveFeasibilityHelper/6 + builtin:sort/2 + builtin:throw/1 + called from: + feasibilityService:getInfeasibleNodes/4 + reasoningEngine:resolveFeasibility/4 + +reasoningEngine:resolveFeasibilityHelper/6 reasoningEngine.pro:32:46 + subgoals: + builtin: = /2 + builtin:append/3 + reasoningEngine:list_executed_nodes/3 + reasoningEngine:resolveFeasibilityHelper/6 + undefined:smtFormula/3 + solsticeUtility:structToList/2 + reasoningEngine:subtract/3 + called from: + reasoningEngine:resolveFeasibility/5 + reasoningEngine:resolveFeasibilityHelper/6 + +reasoningEngine:resolveFeasibilityOfNode/5 reasoningEngine.pro:48:62 + subgoals: + builtin:append/3 + logicTranslator:formatConstraints/2 + builtin:if/3 + reasoningEngine:list_executed_nodes/3 + logicTranslator:processAllNodes/3 + builtin:sort/2 + solsticeUtility:structToList/2 + called from: + feasibilityService:testFeasibilityOfNode/5 + +reasoningEngine:subtract/3 reasoningEngine.pro:77:84 + subgoals: + builtin: = /2 + lists:selectchk/3 + reasoningEngine:subtract/3 + called from: + reasoningEngine:resolveFeasibilityHelper/6 + reasoningEngine:subtract/3 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro + +screenUtility:bracketed/3 screenUtility.pro:34:36 + subgoals: + builtin: = /2 + screenUtility:false/2 + screenUtility:true/2 + screenUtility:whitespace/2 + called from: + screenUtility:getTrueFalseList/3 + +screenUtility:false/2 screenUtility.pro:42:43 + subgoals: + builtin: = /2 + called from: + screenUtility:bracketed/3 + screenUtility:whitespaceDelimited/3 + +screenUtility:filterListOfVars/3 screenUtility.pro:91:93 + subgoals: + screenUtility:filterListOfVars/3 + called from: + screenUtility:filterListOfVars/3 + screenUtility:screenOutputArgs/5 + tclScreen:setVars/1 + +screenUtility:getEditLine/2 screenUtility.pro:23:28 + subgoals: + builtin: = /2 + lists:append/2 + screenUtility:getEditLine/2 + builtin:read_line/2 + builtin:throw/1 + called from: + screenUtility:getEditLine/2 + screenUtility:getTrueFalseEditableListFromTCLFile/2 + +screenUtility:getTrueFalseEditableListFromTCLFile/2 screenUtility.pro:10:23 + subgoals: + builtin:close/1 + screenUtility:getEditLine/2 + screenUtility:getTrueFalseList/3 + log:log/2 + builtin:open/3 + called from: + screenUtility:screenOutputArgs/5 + tclScreen:setVars/1 + +screenUtility:getTrueFalseList/3 screenUtility.pro:30:32 + subgoals: + builtin: = /2 + screenUtility:bracketed/3 + screenUtility:getTrueFalseList/3 + screenUtility:whitespaceDelimited/3 + called from: + screenUtility:getTrueFalseEditableListFromTCLFile/2 + screenUtility:getTrueFalseList/3 + +screenUtility:screenOutputArgs/5 screenUtility.pro:46:52 + subgoals: + builtin: = /2 + builtin:atom_concat/3 + screenUtility:filterListOfVars/3 + sessionManager:getCurrentProject/1 + sessionManager:getScreensPath/2 + screenUtility:getTrueFalseEditableListFromTCLFile/2 + builtin:length/2 + log:log/2 + builtin:memberchk/2 + screenUtility:switchToSetInstance/2 + no callers + +screenUtility:switchToSetInstance/2 screenUtility.pro:89:91 + no subgoals + called from: + screenUtility:screenOutputArgs/5 + +screenUtility:true/2 screenUtility.pro:40:42 + subgoals: + builtin: = /2 + called from: + screenUtility:bracketed/3 + screenUtility:whitespaceDelimited/3 + +screenUtility:whitespace/2 screenUtility.pro:43:45 + subgoals: + builtin: = /2 + screenUtility:whitespace/2 + called from: + screenUtility:bracketed/3 + screenUtility:whitespace/2 + screenUtility:whitespaceDelimited/3 + +screenUtility:whitespaceDelimited/3 screenUtility.pro:37:39 + subgoals: + screenUtility:false/2 + screenUtility:true/2 + screenUtility:whitespace/2 + called from: + screenUtility:getTrueFalseList/3 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro + +semantics:applyJoinQueries/3 semantics.pro:1390:1394 + subgoals: + lists:append/2 + semantics:checkJoins/2 + called from: + semantics:runSelect/4 + +semantics:assignReturnedStruct/4 semantics.pro:1161:1165 + subgoals: + semantics:assignReturnedStruct/4 + semantics:setVar/4 + called from: + semantics:assignReturnedStruct/4 + semantics:execute/5 + +semantics:assignStruct/4 semantics.pro:1168:1172 + subgoals: + semantics:assignStruct/4 + semantics:getVar/3 + semantics:setVar/4 + called from: + semantics:assignStruct/4 + semantics:execute/5 + +semantics:assignValues/5 semantics.pro:1207:1212 + subgoals: + semantics:assignValues/5 + semantics:concatInput/3 + semantics:setVar/4 + called from: + semantics:assignValues/5 + semantics:execute/5 + +semantics:atomOrNumber/2 semantics.pro:1309:1315 + subgoals: + builtin:atom_codes/2 + builtin:name/2 + called from: + semantics:execute/5 + tclScreen:setVariable/4 + +semantics:atomize/2 semantics.pro:1230:1234 + subgoals: + builtin:atom/1 + builtin:atom_codes/2 + lists:is_list/1 + builtin:number/1 + builtin:number_codes/2 + called from: + semantics:groundArgs/4 + +semantics:buildJoinQueries/3 semantics.pro:1369:1374 + subgoals: + lists:append/2 + builtin:findall/3 + called from: + semantics:buildQueries/4 + +semantics:buildQueries/4 semantics.pro:1349:1353 + subgoals: + semantics:buildJoinQueries/3 + semantics:buildWhereQueries/3 + called from: + semantics:runSelect/4 + +semantics:buildWhereQueries/3 semantics.pro:1353:1369 + subgoals: + builtin:findall/3 + called from: + semantics:buildQueries/4 + +semantics:catchUserCancellation/1 semantics.pro:851:854 + subgoals: + builtin:throw/1 + called from: + semantics:execute/5 + +semantics:changeFile/3 semantics.pro:1251:1256 + subgoals: + builtin:retractall/1 + assert-user:fileRecord/3 + called from: + semantics:execute/5 + +semantics:checkColumns/2 semantics.pro:1405:1408 + subgoals: + builtin: < /2 + builtin: =< /2 + builtin: > /2 + builtin: >= /2 + semantics:checkColumns/2 + builtin:member/2 + called from: + semantics:checkColumns/2 + semantics:execute/5 + semantics:getColumnValues/3 + semantics:runWhereQueries/2 + +semantics:checkJoins/2 semantics.pro:1432:1435 + subgoals: + builtin: \== /2 + semantics:checkJoins/2 + builtin:member/2 + called from: + semantics:applyJoinQueries/3 + semantics:checkJoins/2 + +semantics:checkVar/2 semantics.pro:848:851 + subgoals: + builtin:memberchk/2 + called from: + semantics:executePhiFunction/4 + semantics:mapGlobals/5 + semantics:mapReturn/5 + +semantics:concatInput/3 semantics.pro:1243:1249 + subgoals: + builtin: = /2 + solsticeUtility:atom_concat/2 + semantics:concatInput/3 + called from: + semantics:assignValues/5 + semantics:concatInput/3 + semantics:execute/5 + +semantics:createInitialStep/3 semantics.pro:1204:1207 + subgoals: + builtin: = /2 + called from: + semantics:execute/5 + semantics:findInitialNodes/3 + +semantics:deleteFile/2 semantics.pro:1259:1263 + subgoals: + builtin:retractall/1 + user:fileRecord/3 + called from: + semantics:execute/5 + +semantics:evalConditional/4 semantics.pro:982:998 + subgoals: + builtin: = /2 + builtin: =.. /2 + semantics:evalConditional/4 + semantics:evalExpression/4 + builtin:member/2 + builtin:number/1 + called from: + semantics:evalConditional/4 + semantics:execute/5 + semantics:resolve/4 + +semantics:evalExpression/4 semantics.pro:943:959 + subgoals: + builtin: = /2 + builtin: =.. /2 + builtin:atom/1 + semantics:evalExpression/4 + builtin:float/1 + semantics:getReturn/2 + semantics:getVar/3 + builtin:integer/1 + builtin:is/2 + lists:is_list/1 + builtin:member/2 + called from: + semantics:evalConditional/4 + semantics:evalExpression/4 + semantics:execute/5 + semantics:groundArgs/4 + semantics:keyIsValid/4 + semantics:notValid/5 + +semantics:evalStructure/3 semantics.pro:932:940 + subgoals: + semantics:evalStructure/3 + semantics:getVar/3 + called from: + semantics:evalStructure/3 + semantics:execute/5 + +semantics:execute/5 semantics.pro:58:85 + subgoals: + builtin: = /2 + builtin: =< /2 + builtin: > /2 + builtin:(\+)/1 + builtin:abolish/1 + lists:append/2 + builtin:append/3 + semantics:assignReturnedStruct/4 + semantics:assignStruct/4 + semantics:assignValues/5 + builtin:atom/1 + semantics:atomOrNumber/2 + builtin:atom_codes/2 + builtin:atom_concat/3 + semantics:catchUserCancellation/1 + semantics:changeFile/3 + semantics:checkColumns/2 + solsticeUtility:computeDateAdd/4 + solsticeUtility:computeDateDiff/4 + semantics:concatInput/3 + semantics:createInitialStep/3 + undefined:datime/1 + solsticeUtility:daysInMonth/3 + semantics:deleteFile/2 + builtin:do/2 + semantics:evalConditional/4 + semantics:evalExpression/4 + semantics:evalStructure/3 + semantics:fileExists/1 + builtin:functor/3 + sessionManager:getCurrentProject/1 + semantics:getGTEfileRecord/3 + semantics:getNextRecord/3 + semantics:getPosition/3 + semantics:getQueryValues/3 + semantics:getRecord/3 + sessionManager:getScreensPath/2 + semantics:getVar/3 + semantics:groundArgs/4 + builtin:if/3 + builtin:is/2 + lists:is_list/1 + builtin:length/2 + log:log/2 + builtin:nl/0 + undefined:now/1 + builtin:number_codes/2 + solsticeUtility:numeric/1 + semantics:partialKey/2 + semantics:readRecordInfo/5 + builtin:retractall/1 + semantics:runCursor/4 + semantics:runSelect/4 + semantics:runUpdate/3 + semantics:setVar/4 + semantics:setVariables/4 + solsticeUtility:splitAtom/3 + solsticeUtility:structToList/2 + tclGui:tclQueryBox/2 + tclScreen:tclScreen/6 + builtin:throw/1 + builtin:write/1 + semantics:writeRecordInfo/3 + semantics:writeStruct/2 + user:currentIndex/1 + user:cursor/3 + user:cursorQuery/1 + user:dbRow/2 + user:fileRecord/3 + user:representation/2 + assert-user:currentIndex/1 + assert-user:cursorQuery/1 + assert-user:dbRow/2 + assert-user:nextRecord/2 + retract-user:dbRow/2 + called from: + semantics:executeNode/5 + +semantics:executeNode/5 semantics.pro:27:49 + subgoals: + builtin: = /2 + semantics:execute/5 + builtin:member/2 + user:representation/2 + called from: + cfmStep:cfmNodeStep/4 + dfmStep:dfmNodeStep/4 + +semantics:executePhiFunction/4 semantics.pro:1290:1304 + subgoals: + builtin: = /2 + semantics:checkVar/2 + semantics:executePhiFunction/4 + semantics:getVar/3 + semantics:setVar/4 + called from: + semantics:executePhiFunction/4 + semantics:resolve/4 + +semantics:extractTableName/2 semantics.pro:1401:1403 + subgoals: + semantics:extractTableName/2 + called from: + semantics:extractTableName/2 + semantics:getTableName/2 + +semantics:fileExists/1 semantics.pro:908:911 + subgoals: + user:fileRecord/3 + called from: + semantics:execute/5 + +semantics:findInitialNodes/3 semantics.pro:1180:1187 + subgoals: + builtin: = /2 + semantics:createInitialStep/3 + builtin:findall/3 + builtin:member/2 + user:representation/2 + called from: + preProcess:initializeDebug/2 + preProcess:runCfm/3 + preProcess:runDfm/3 + semantics:functionStep/4 + +semantics:functionStep/4 semantics.pro:1101:1114 + subgoals: + builtin: = /2 + semantics:findInitialNodes/3 + preProcess:loadModule/1 + semantics:mapArguments/5 + semantics:mapGlobals/5 + semantics:mapReturn/5 + builtin:member/2 + user:representation/2 + called from: + cfmStep:cfmStep/4 + dfmStep:dfmStep/4 + +semantics:getColumnValues/3 semantics.pro:1333:1340 + subgoals: + semantics:checkColumns/2 + user:dbRow/2 + no callers + +semantics:getGTEfileRecord/3 semantics.pro:855:859 + subgoals: + builtin:append/3 + builtin:findall/3 + builtin:is/2 + lists:last/2 + lists:nth1/3 + builtin:sort/2 + user:fileRecord/3 + called from: + semantics:execute/5 + +semantics:getNextRecord/3 semantics.pro:1263:1268 + subgoals: + builtin: = /2 + builtin:(\+)/1 + builtin:findall/3 + builtin:is/2 + lists:last/2 + lists:nth1/3 + builtin:retractall/1 + undefined:samsort/2 + user:fileRecord/3 + called from: + semantics:execute/5 + +semantics:getPosition/3 semantics.pro:873:877 + subgoals: + builtin:(\+)/1 + builtin:do/2 + lists:is_list/1 + called from: + semantics:execute/5 + semantics:keyIsValid/4 + semantics:notValid/5 + +semantics:getQueryValues/3 semantics.pro:1442:1444 + subgoals: + semantics:getQueryValues/3 + semantics:getVar/3 + called from: + semantics:execute/5 + semantics:getQueryValues/3 + +semantics:getRecord/3 semantics.pro:1323:1330 + subgoals: + builtin: = /2 + builtin:findall/3 + builtin:memberchk/2 + undefined:samsort/2 + called from: + semantics:execute/5 + +semantics:getReturn/2 semantics.pro:1176:1180 + subgoals: + builtin: = /2 + builtin:member/2 + called from: + semantics:evalExpression/4 + +semantics:getTableName/2 semantics.pro:1394:1401 + subgoals: + builtin:atom_codes/2 + semantics:extractTableName/2 + lists:reverse/2 + no callers + +semantics:getVar/3 semantics.pro:803:810 + subgoals: + builtin: = /2 + builtin:atom/1 + log:log/2 + builtin:memberchk/2 + builtin:number/1 + builtin:throw/1 + called from: + semantics:assignStruct/4 + semantics:evalExpression/4 + semantics:evalStructure/3 + semantics:execute/5 + semantics:executePhiFunction/4 + semantics:getQueryValues/3 + semantics:mapArguments/5 + semantics:mapGlobals/5 + semantics:mapReturn/5 + semantics:writeRecordInfo/3 + semantics:writeStruct/2 + +semantics:groundArgs/4 semantics.pro:1226:1230 + subgoals: + semantics:atomize/2 + semantics:evalExpression/4 + called from: + semantics:execute/5 + +semantics:initialNode/3 semantics.pro:1198:1204 + subgoals: + builtin:(\+)/1 + builtin:member/2 + no callers + +semantics:keyIsValid/4 semantics.pro:911:917 + subgoals: + semantics:evalExpression/4 + semantics:getPosition/3 + user:fileRecord/3 + user:representation/2 + no callers + +semantics:mapArguments/5 semantics.pro:1050:1054 + subgoals: + builtin: = /2 + semantics:getVar/3 + semantics:mapArguments/5 + semantics:setVar/4 + builtin:throw/1 + called from: + semantics:functionStep/4 + semantics:mapArguments/5 + +semantics:mapGlobals/5 semantics.pro:1066:1068 + subgoals: + builtin: = /2 + semantics:checkVar/2 + semantics:getVar/3 + semantics:mapGlobals/5 + semantics:setVar/4 + builtin:throw/1 + called from: + semantics:functionStep/4 + semantics:mapGlobals/5 + +semantics:mapReturn/5 semantics.pro:1081:1083 + subgoals: + builtin: = /2 + semantics:checkVar/2 + semantics:getVar/3 + builtin:member/2 + semantics:setVar/4 + called from: + semantics:functionStep/4 + +semantics:notValid/5 semantics.pro:917:924 + subgoals: + builtin:(\+)/1 + semantics:evalExpression/4 + semantics:getPosition/3 + user:fileRecord/3 + user:representation/2 + no callers + +semantics:partialKey/2 semantics.pro:1315:1319 + subgoals: + builtin:atom/1 + builtin:do/2 + builtin:number/1 + called from: + semantics:execute/5 + +semantics:readRecordInfo/5 semantics.pro:889:892 + subgoals: + builtin:(\+)/1 + lists:is_list/1 + lists:same_length/2 + semantics:setVar/4 + semantics:setVariables/4 + called from: + semantics:execute/5 + +semantics:resolve/4 semantics.pro:1033:1049 + subgoals: + builtin: = /2 + semantics:evalConditional/4 + semantics:executePhiFunction/4 + called from: + semantics:resolveNode/4 + +semantics:resolveNode/4 semantics.pro:49:58 + subgoals: + builtin: = /2 + builtin:member/2 + semantics:resolve/4 + called from: + cfmStep:cfmNodeStep/4 + dfmStep:dfmNodeStep/4 + +semantics:runCursor/4 semantics.pro:1346:1349 + subgoals: + builtin:findall/3 + called from: + semantics:execute/5 + +semantics:runSelect/4 semantics.pro:1340:1346 + subgoals: + semantics:applyJoinQueries/3 + semantics:buildQueries/4 + builtin:do/2 + semantics:runWhereQueries/2 + called from: + semantics:execute/5 + +semantics:runUpdate/3 semantics.pro:1374:1376 + subgoals: + builtin:member/2 + semantics:runUpdate/3 + called from: + semantics:execute/5 + semantics:runUpdate/3 + +semantics:runWhereQueries/2 semantics.pro:1383:1386 + subgoals: + semantics:checkColumns/2 + semantics:runWhereQueries/2 + user:dbRow/2 + called from: + semantics:runSelect/4 + semantics:runWhereQueries/2 + +semantics:scanGlobalOuts/3 semantics.pro:1093:1095 + subgoals: + builtin: = /2 + builtin:if/3 + no callers + +semantics:setVar/4 semantics.pro:831:837 + subgoals: + builtin: = /2 + builtin:(\+)/1 + log:log/2 + lists:selectchk/4 + builtin:throw/1 + called from: + semantics:assignReturnedStruct/4 + semantics:assignStruct/4 + semantics:assignValues/5 + semantics:execute/5 + semantics:executePhiFunction/4 + semantics:mapArguments/5 + semantics:mapGlobals/5 + semantics:mapReturn/5 + semantics:readRecordInfo/5 + semantics:setVariables/4 + tclScreen:setVariable/4 + +semantics:setVariables/4 semantics.pro:820:822 + subgoals: + builtin:(\+)/1 + semantics:setVar/4 + semantics:setVariables/4 + called from: + semantics:execute/5 + semantics:readRecordInfo/5 + semantics:setVariables/4 + +semantics:splitInput/3 semantics.pro:1219:1225 + subgoals: + builtin:append/3 + solsticeUtility:atom_concat/2 + semantics:splitInput/3 + called from: + semantics:splitInput/3 + +semantics:writeRecordInfo/3 semantics.pro:879:886 + subgoals: + builtin:(\+)/1 + builtin:do/2 + semantics:getVar/3 + lists:is_list/1 + called from: + semantics:execute/5 + +semantics:writeStruct/2 semantics.pro:924:928 + subgoals: + semantics:getVar/3 + builtin:nl/0 + builtin:write/1 + semantics:writeStruct/2 + called from: + semantics:execute/5 + semantics:writeStruct/2 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro + +sessionManager:assertRepresentations/0 sessionManager.pro:372:388 + subgoals: + sessionManager:getAppFnPath/1 + sessionManager:getApplicationModelPath/1 + sessionManager:getArcPath/1 + sessionManager:getOntologyPath/1 + sessionManager:getTransactionPath/1 + sessionManager:hasBeenBuilt/1 + sessionManager:hasBeenBuilt/2 + ontology:instantiateFactsFromPath/1 + appFnInterface:loadApplicationFunctions/1 + applicationModel:loadApplicationModelForCurrentProject/0 + sessionManager:loadArcs/1 + transactionInterface:loadTransactionsForCurrentProject/0 + called from: + sessionManager:rebuildRepresentations/1 + sessionManager:setUpCurrentProject/2 + +sessionManager:cleanUpRepresentations/0 sessionManager.pro:366:372 + subgoals: + appFnInterface:cleanUp/0 + ontology:cleanUpOntologyFacts/0 + transactionInterface:cleanUp/0 + called from: + sessionManager:rebuildRepresentations/1 + sessionManager:setUpCurrentProject/2 + +sessionManager:getAppFnPath/1 sessionManager.pro:149:154 + subgoals: + sessionManager:getAppFnPath/2 + sessionManager:getCurrentProject/1 + called from: + appFnInterface:queryAppFn/3 + applicationFunction:constructApplicationFunctions/3 + sessionManager:assertRepresentations/0 + sessionManager:reloadRepresentation/2 + +sessionManager:getAppFnPath/2 sessionManager.pro:154:159 + subgoals: + builtin:,/2 + sessionManager:getSessionNamespace/1 + log:log/2 + called from: + sessionManager:getAppFnPath/1 + +sessionManager:getApplicationModelPath/1 sessionManager.pro:192:197 + subgoals: + sessionManager:getApplicationModelPath/2 + sessionManager:getCurrentProject/1 + called from: + appFnInterface:loadApplicationFunctionsIfNecessary/0 + applicationFunction:setUpAppFnProject/1 + applicationModel:ensureApplicationModelDirectoryExists/0 + applicationModel:loadApplicationModelForCurrentProject/0 + applicationModel:writeApplicationModelToFile/0 + sessionManager:assertRepresentations/0 + +sessionManager:getApplicationModelPath/2 sessionManager.pro:197:202 + subgoals: + builtin:,/2 + sessionManager:getSessionNamespace/1 + log:log/2 + called from: + sessionManager:getApplicationModelPath/1 + +sessionManager:getArcPath/1 sessionManager.pro:206:210 + subgoals: + sessionManager:getArcPath/2 + sessionManager:getCurrentProject/1 + called from: + applicationFunction:setUpAppFnProject/1 + dfmTraversal:build_dfm_traversal_graph/2 + sessionManager:assertRepresentations/0 + +sessionManager:getArcPath/2 sessionManager.pro:210:218 + subgoals: + builtin:,/2 + sessionManager:getSessionNamespace/1 + log:log/2 + called from: + sessionManager:getArcPath/1 + +sessionManager:getCFMPath/1 sessionManager.pro:83:88 + subgoals: + sessionManager:getCFMPath/2 + sessionManager:getCurrentProject/1 + called from: + applicationModel:generateApplicationModelForCurrentProject/0 + applicationModel:refreshModuleInApplicationModelForCurrentProject/1 + sessionManager:getCFMPath/3 + +sessionManager:getCFMPath/2 sessionManager.pro:98:103 + subgoals: + builtin:,/2 + sessionManager:getSessionNamespace/1 + log:log/2 + called from: + sessionManager:getCFMPath/1 + +sessionManager:getCFMPath/3 sessionManager.pro:88:98 + subgoals: + builtin: = /2 + solsticeUtility:atom_concat/2 + file_systems:file_members_of_directory/2 + sessionManager:getCFMPath/1 + builtin:ground/1 + builtin:member/2 + no callers + +sessionManager:getCurrentProject/1 sessionManager.pro:222:227 + subgoals: + log:log/2 + called from: + appFnInterface:loadApplicationFunctions/1 + applicationFunction:setUpAppFnProject/1 + applicationModel:cleanApplicationModelForCurrentProject/0 + applicationModel:generateApplicationModelForCurrentProject/0 + applicationModel:loadApplicationModelForCurrentProject/0 + applicationModel:refreshModuleInApplicationModelForCurrentProject/1 + applicationModel:retractModuleFromApplicationModelForCurrentProject/1 + applicationModel:writeApplicationModelToFile/0 + dfmTraversal:full_traverse/6 + dfm_mappings:conditionalVar/3 + dfm_mappings:initialNode/2 + dfm_mappings:moduleName/3 + dfm_mappings:phiByNode/3 + dfm_mappings:phiByVar/3 + dfm_mappings:phiFunctions/3 + dfm_mappings:stmtType/3 + dfm_mappings:terminalNode/2 + screenUtility:screenOutputArgs/5 + semantics:execute/5 + sessionManager:getAppFnPath/1 + sessionManager:getApplicationModelPath/1 + sessionManager:getArcPath/1 + sessionManager:getCFMPath/1 + sessionManager:getDFMPath/1 + sessionManager:getOntologyPath/1 + sessionManager:getScreensPath/1 + sessionManager:getSourcePath/1 + sessionManager:getTransactionPath/1 + sessionManager:rebuildRepresentations/1 + sessionManager:reloadRepresentation/2 + +sessionManager:getDFMPath/1 sessionManager.pro:107:112 + subgoals: + sessionManager:getCurrentProject/1 + sessionManager:getDFMPath/2 + called from: + applicationModel:generateApplicationModelForCurrentProject/0 + applicationModel:refreshModuleInApplicationModelForCurrentProject/1 + sessionManager:getDFMPath/3 + +sessionManager:getDFMPath/2 sessionManager.pro:126:131 + subgoals: + builtin:,/2 + sessionManager:getSessionNamespace/1 + log:log/2 + called from: + sessionManager:getDFMPath/1 + +sessionManager:getDFMPath/3 sessionManager.pro:112:122 + subgoals: + builtin: = /2 + solsticeUtility:atom_concat/2 + file_systems:file_members_of_directory/2 + sessionManager:getDFMPath/1 + builtin:ground/1 + log:log/2 + builtin:member/2 + no callers + +sessionManager:getOntologyPath/1 sessionManager.pro:135:140 + subgoals: + sessionManager:getCurrentProject/1 + sessionManager:getOntologyPath/2 + called from: + sessionManager:assertRepresentations/0 + sessionManager:reloadRepresentation/2 + +sessionManager:getOntologyPath/2 sessionManager.pro:140:145 + subgoals: + builtin:,/2 + sessionManager:getSessionNamespace/1 + log:log/2 + called from: + sessionManager:getOntologyPath/1 + +sessionManager:getScreenPath/2 sessionManager.pro:188:192 + subgoals: + log:log/2 + called from: + sessionManager:getScreensPath/1 + +sessionManager:getScreensPath/1 sessionManager.pro:177:183 + subgoals: + sessionManager:getCurrentProject/1 + sessionManager:getScreenPath/2 + no callers + +sessionManager:getScreensPath/2 sessionManager.pro:183:188 + subgoals: + builtin:,/2 + sessionManager:getSessionNamespace/1 + called from: + screenUtility:screenOutputArgs/5 + semantics:execute/5 + +sessionManager:getSessionNamespace/1 sessionManager.pro:403:408 + no subgoals + called from: + sessionManager:getAppFnPath/2 + sessionManager:getApplicationModelPath/2 + sessionManager:getArcPath/2 + sessionManager:getCFMPath/2 + sessionManager:getDFMPath/2 + sessionManager:getOntologyPath/2 + sessionManager:getScreensPath/2 + sessionManager:getSourcePath/2 + sessionManager:getTransactionPath/2 + sessionManager:removeSessionCurrentProject/0 + sessionManager:removeSessionProjectPath/1 + sessionManager:setCurrentProject/1 + sessionManager:setProjectPath/2 + sessionManager:setTestingFlag/1 + sessionManager:setUpCurrentProject/1 + sessionManager:setUpCurrentProject/2 + +sessionManager:getSourcePath/1 sessionManager.pro:63:74 + subgoals: + sessionManager:getCurrentProject/1 + sessionManager:getSourcePath/2 + no callers + +sessionManager:getSourcePath/2 sessionManager.pro:74:79 + subgoals: + builtin:,/2 + sessionManager:getSessionNamespace/1 + log:log/2 + called from: + sessionManager:getSourcePath/1 + +sessionManager:getTestingFlag/1 sessionManager.pro:408:419 + no subgoals + called from: + sessionManager:loadArcs/1 + +sessionManager:getTransactionPath/1 sessionManager.pro:163:168 + subgoals: + sessionManager:getCurrentProject/1 + sessionManager:getTransactionPath/2 + called from: + sessionManager:assertRepresentations/0 + transactionInterface:loadTransactionsForCurrentProject/0 + +sessionManager:getTransactionPath/2 sessionManager.pro:168:173 + subgoals: + builtin:,/2 + sessionManager:getSessionNamespace/1 + log:log/2 + called from: + sessionManager:getTransactionPath/1 + +sessionManager:get_file_path/2 sessionManager.pro:398:401 + subgoals: + builtin:(\+)/1 + builtin:atom_concat/3 + called from: + sessionManager:loadArcs/1 + +sessionManager:hasBeenBuilt/1 sessionManager.pro:440:442 + subgoals: + file_systems:file_exists/1 + called from: + sessionManager:assertRepresentations/0 + +sessionManager:hasBeenBuilt/2 sessionManager.pro:433:440 + subgoals: + builtin: \= /2 + file_systems:file_members_of_directory/2 + lists:include/3 + called from: + applicationFunction:setUpAppFnProject/1 + sessionManager:assertRepresentations/0 + sessionManager:reloadRepresentation/2 + +sessionManager:loadArcs/1 sessionManager.pro:388:392 + subgoals: + lists:append/2 + builtin:ensure_loaded/1 + lists:exclude/3 + file_systems:file_members_of_directory/2 + sessionManager:getTestingFlag/1 + sessionManager:get_file_path/2 + called from: + sessionManager:assertRepresentations/0 + +sessionManager:rebuildRepresentations/1 sessionManager.pro:329:339 + subgoals: + sessionManager:assertRepresentations/0 + sessionManager:cleanUpRepresentations/0 + sessionManager:getCurrentProject/1 + no callers + +sessionManager:reloadRepresentation/2 sessionManager.pro:341:353 + subgoals: + appFnInterface:cleanUp/0 + ontology:cleanUpOntologyFacts/0 + sessionManager:getAppFnPath/1 + sessionManager:getCurrentProject/1 + sessionManager:getOntologyPath/1 + sessionManager:hasBeenBuilt/2 + ontology:instantiateFactsFromPath/1 + appFnInterface:loadApplicationFunctions/1 + log:log/2 + no callers + +sessionManager:removeSessionCurrentProject/0 sessionManager.pro:320:325 + subgoals: + sessionManager:getSessionNamespace/1 + builtin:retractall/1 + no callers + +sessionManager:removeSessionProjectPath/1 sessionManager.pro:325:329 + subgoals: + sessionManager:getSessionNamespace/1 + builtin:retractall/1 + no callers + +sessionManager:setCurrentProject/1 sessionManager.pro:231:238 + subgoals: + builtin:assert/1 + sessionManager:getSessionNamespace/1 + builtin:ground/1 + builtin:retractall/1 + called from: + sessionManager:setUpCurrentProject/2 + +sessionManager:setProjectPath/2 sessionManager.pro:238:244 + subgoals: + builtin:assert/1 + sessionManager:getSessionNamespace/1 + builtin:ground/1 + builtin:retractall/1 + called from: + sessionManager:setUpCurrentProject/2 + +sessionManager:setTestingFlag/1 sessionManager.pro:421:427 + subgoals: + builtin:assert/1 + sessionManager:getSessionNamespace/1 + builtin:ground/1 + builtin:retractall/1 + no callers + +sessionManager:setUpCurrentProject/1 sessionManager.pro:244:259 + subgoals: + builtin:,/2 + sessionManager:getSessionNamespace/1 + log:log/2 + builtin:nl/0 + builtin:throw/1 + builtin:write/1 + no callers + +sessionManager:setUpCurrentProject/2 sessionManager.pro:264:269 + subgoals: + builtin:,/2 + sessionManager:assertRepresentations/0 + sessionManager:cleanUpRepresentations/0 + sessionManager:getSessionNamespace/1 + undefined:isSetUp/1 + sessionManager:setCurrentProject/1 + sessionManager:setProjectPath/2 + builtin:throw/1 + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro + +solsticeFileUtility:getFileNameAssignment/3 solsticeFileUtility.pro:21:30 + subgoals: + builtin: = /2 + builtin:atom/1 + query_interface:queryVerify/4 + builtin:throw/1 + called from: + solsticeFileUtility:resolveFileName/2 + +solsticeFileUtility:resolveFileName/2 solsticeFileUtility.pro:4:18 + subgoals: + builtin: = /2 + solsticeFileUtility:getFileNameAssignment/3 + query_interface:queryVerify/4 + builtin:throw/1 + called from: + applicationFunction:processDB2Position/6 + applicationFunction:resolveApplicationFunctions/6 + applicationFunction:retrieveConceptByStmt/3 + +solsticeFileUtility:save_module_txt/2 solsticeFileUtility.pro:34:49 + subgoals: + builtin:listing/0 + builtin:set_module/1 + builtin:tell/1 + builtin:told/0 + no callers + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro + +solsticeUtility:appendCharListWithCharacter/3 solsticeUtility.pro:272:276 + subgoals: + builtin:append/3 + solsticeUtility:appendCharListWithCharacter/3 + called from: + ontology:convertTclScreenToOntologyName/2 + ontology:getColumnNameNodeString/2 + solsticeUtility:appendCharListWithCharacter/3 + +solsticeUtility:atomNumber/2 dynamic solsticeUtility.pro:0:0 + modified in: + solsticeUtility:generateAtom/2 + no subgoals + no callers + +solsticeUtility:atomToNumber/2 solsticeUtility.pro:402:410 + subgoals: + builtin:atom_codes/2 + builtin:number_codes/2 + no callers + +solsticeUtility:atom_concat/2 solsticeUtility.pro:157:164 + subgoals: + lists:append/2 + solsticeUtility:guarded_atom_codes/2 + called from: + logicTranslationUtilities:prettyPrinter/2 + logicTranslationUtilities:spaces/2 + logicTranslator:getFieldSizeFromOntology/5 + logicTranslator:nodeFunction/2 + logicTranslator:nodeFunctionAndParentFunction/5 + rankingFunction:getFileSizeFromOntology/2 + semantics:concatInput/3 + semantics:splitInput/3 + sessionManager:getCFMPath/3 + sessionManager:getDFMPath/3 + solsticeUtility:elements_atom/2 + solsticeUtility:list_atom/2 + solsticeUtility:spaces/2 + solsticeUtility:subterms_atom/2 + solsticeUtility:term_atom/2 + transactionInterface:getEventName/3 + +solsticeUtility:callOrRecall/1 solsticeUtility.pro:124:126 + subgoals: + builtin:(\+)/1 + builtin:call/1 + solsticeUtility:recall/2 + solsticeUtility:tautology/1 + assert-solsticeUtility:recall/2 + no callers + +solsticeUtility:characterCodesToAtoms/2 solsticeUtility.pro:251:254 + subgoals: + builtin:(\+)/1 + builtin:atom_codes/2 + solsticeUtility:characterCodesToAtoms/2 + lists:is_list/1 + called from: + solsticeUtility:characterCodesToAtoms/2 + solsticeUtility:splitAtom/3 + +solsticeUtility:cleanup/1 solsticeUtility.pro:317:344 + subgoals: + builtin:abolish/1 + builtin:append/3 + builtin:findall/3 + builtin:nl/1 + builtin:open/3 + builtin:retractall/1 + builtin:write/2 + solsticeUtility:writeToStream/2 + called from: + preProcess:runCfm/3 + preProcess:runDfm/3 + preProcess:terminateDebug/2 + +solsticeUtility:computeDateAdd/4 solsticeUtility.pro:544:547 + subgoals: + builtin: < /2 + builtin: = /2 + builtin: =< /2 + builtin: > /2 + solsticeUtility:dayCalc/5 + solsticeUtility:daysInMonth/3 + builtin:is/2 + called from: + semantics:execute/5 + +solsticeUtility:computeDateDiff/4 solsticeUtility.pro:554:557 + subgoals: + solsticeUtility:computeDateDiff/4 + solsticeUtility:dateComp/3 + solsticeUtility:dayCalc/5 + builtin:is/2 + called from: + semantics:execute/5 + solsticeUtility:computeDateDiff/4 + +solsticeUtility:convertToAtom/2 solsticeUtility.pro:262:269 + subgoals: + builtin: = /2 + builtin:atom/1 + builtin:atom_codes/2 + builtin:number/1 + builtin:number_codes/2 + no callers + +solsticeUtility:dateComp/3 solsticeUtility.pro:526:528 + subgoals: + builtin: < /2 + builtin: = /2 + called from: + solsticeUtility:computeDateDiff/4 + +solsticeUtility:dayCalc/5 solsticeUtility.pro:565:573 + subgoals: + builtin: < /2 + builtin: = /2 + builtin: =< /2 + builtin: > /2 + solsticeUtility:dayCalc/5 + solsticeUtility:daysInMonth/3 + builtin:is/2 + builtin:var/1 + called from: + solsticeUtility:computeDateAdd/4 + solsticeUtility:computeDateDiff/4 + solsticeUtility:dayCalc/5 + +solsticeUtility:daysInMonth/3 solsticeUtility.pro:530:534 + subgoals: + builtin: = /2 + builtin:is/2 + builtin:memberchk/2 + called from: + semantics:execute/5 + solsticeUtility:computeDateAdd/4 + solsticeUtility:dayCalc/5 + +solsticeUtility:disjunctiveStructToList/2 solsticeUtility.pro:99:104 + subgoals: + solsticeUtility:disjunctiveStructToList/2 + builtin:var/1 + called from: + solsticeUtility:disjunctiveStructToList/2 + +solsticeUtility:elements_atom/2 solsticeUtility.pro:376:378 + subgoals: + solsticeUtility:atom_concat/2 + solsticeUtility:elements_atom/2 + solsticeUtility:toAtom/2 + called from: + solsticeUtility:elements_atom/2 + solsticeUtility:list_atom/2 + +solsticeUtility:flattenList/2 solsticeUtility.pro:108:113 + subgoals: + builtin:append/3 + solsticeUtility:flattenList/2 + called from: + dfmTraversal:find_all_downstream_nodes_inclusive/4 + dfmTraversal:find_all_upstream_nodes_inclusive/4 + dfmTraversal:full_traverse/6 + logicTranslator:processAllNodes/3 + rankingFunction:getNumIterations/8 + solsticeUtility:flattenList/2 + +solsticeUtility:generateAtom/2 solsticeUtility.pro:180:189 + subgoals: + builtin:atom_codes/2 + builtin:atom_concat/3 + builtin:is/2 + builtin:number_codes/2 + assert-solsticeUtility:atomNumber/2 + retract-solsticeUtility:atomNumber/2 + called from: + executeMiniProgram:expandExternalCall/2 + executeMiniProgram:expandFunction/4 + logicTranslationUtilities:consolidatePrimitive/5 + +solsticeUtility:ground/2 solsticeUtility.pro:144:150 + subgoals: + builtin:compound/1 + builtin:findall/3 + builtin:functor/3 + builtin:nonvar/1 + builtin:simple/1 + builtin:var/1 + called from: + solsticeUtility:tautology/1 + +solsticeUtility:guarded_atom_codes/2 solsticeUtility.pro:164:169 + subgoals: + builtin:atom_codes/2 + builtin:ground/1 + called from: + solsticeUtility:atom_concat/2 + +solsticeUtility:isDash/1 solsticeUtility.pro:294:297 + subgoals: + builtin: = /2 + called from: + ontology:isUpperOrDash/1 + ontology:wordToCapitalizedWord/2 + +solsticeUtility:isDigit/1 solsticeUtility.pro:297:301 + subgoals: + builtin: < /2 + builtin: > /2 + no callers + +solsticeUtility:isFileExtension/2 solsticeUtility.pro:599:603 + subgoals: + builtin: = /2 + builtin:atom_concat/3 + no callers + +solsticeUtility:isHiddenFile/1 solsticeUtility.pro:588:595 + subgoals: + builtin: = /2 + builtin:sub_atom/5 + called from: + appFnInterface:retrieveRepresentation/1 + +solsticeUtility:isListOfLists/1 solsticeUtility.pro:281:287 + subgoals: + lists:is_list/1 + no callers + +solsticeUtility:isTxtFile/1 solsticeUtility.pro:595:599 + subgoals: + builtin: = /2 + builtin:atom_concat/3 + no callers + +solsticeUtility:isUpper/1 solsticeUtility.pro:287:294 + subgoals: + builtin: < /2 + builtin: > /2 + called from: + ontology:isUpperOrDash/1 + solsticeUtility:toLower/2 + +solsticeUtility:list_atom/2 solsticeUtility.pro:371:376 + subgoals: + solsticeUtility:atom_concat/2 + solsticeUtility:elements_atom/2 + called from: + solsticeUtility:pretty_print_list/3 + solsticeUtility:toAtom/2 + +solsticeUtility:maplist/5 solsticeUtility.pro:170:174 + subgoals: + builtin:call/5 + solsticeUtility:maplist/5 + called from: + solsticeUtility:maplist/5 + +solsticeUtility:maplist/6 solsticeUtility.pro:175:179 + subgoals: + builtin:call/6 + solsticeUtility:maplist/6 + called from: + solsticeUtility:maplist/6 + +solsticeUtility:match/2 solsticeUtility.pro:57:60 + subgoals: + solsticeUtility:match/2 + builtin:memberchk/2 + called from: + preProcess:initializeDebug/2 + preProcess:step/2 + preProcess:terminateDebug/2 + solsticeUtility:match/2 + +solsticeUtility:numeric/1 solsticeUtility.pro:520:525 + subgoals: + builtin: < /2 + builtin: > /2 + solsticeUtility:numeric/1 + called from: + semantics:execute/5 + solsticeUtility:numeric/1 + +solsticeUtility:pretty_print/2 solsticeUtility.pro:410:418 + subgoals: + solsticeUtility:pretty_print/3 + no callers + +solsticeUtility:pretty_print/3 solsticeUtility.pro:418:425 + subgoals: + builtin:atom/1 + builtin:atom_codes/2 + lists:is_list/1 + builtin:number/1 + builtin:number_codes/2 + solsticeUtility:pretty_print_list/3 + solsticeUtility:pretty_print_term/3 + solsticeUtility:spaces/2 + builtin:var/1 + builtin:write/1 + called from: + solsticeUtility:pretty_print/2 + solsticeUtility:pretty_print_elements/3 + solsticeUtility:pretty_print_subterms/3 + solsticeUtility:pretty_print_term/3 + +solsticeUtility:pretty_print_elements/3 solsticeUtility.pro:466:468 + subgoals: + solsticeUtility:pretty_print/3 + solsticeUtility:pretty_print_elements/3 + builtin:write/1 + called from: + solsticeUtility:pretty_print_elements/3 + solsticeUtility:pretty_print_list/3 + +solsticeUtility:pretty_print_list/3 solsticeUtility.pro:446:456 + subgoals: + builtin: =< /2 + builtin:atom_codes/2 + builtin:is/2 + builtin:length/2 + solsticeUtility:list_atom/2 + solsticeUtility:pretty_print_elements/3 + solsticeUtility:spaces/2 + builtin:write/1 + called from: + solsticeUtility:pretty_print/3 + +solsticeUtility:pretty_print_subterms/3 solsticeUtility.pro:507:509 + subgoals: + solsticeUtility:pretty_print/3 + solsticeUtility:pretty_print_subterms/3 + builtin:write/1 + called from: + solsticeUtility:pretty_print_subterms/3 + solsticeUtility:pretty_print_term/3 + +solsticeUtility:pretty_print_term/3 solsticeUtility.pro:473:483 + subgoals: + builtin: =.. /2 + builtin: =< /2 + builtin:atom_codes/2 + builtin:current_op/3 + builtin:is/2 + builtin:length/2 + solsticeUtility:pretty_print/3 + solsticeUtility:pretty_print_subterms/3 + solsticeUtility:spaces/2 + solsticeUtility:term_atom/2 + builtin:write/1 + called from: + solsticeUtility:pretty_print/3 + +solsticeUtility:primitive/1 solsticeUtility.pro:206:209 + subgoals: + builtin: =.. /2 + builtin:ground/1 + lists:is_list/1 + builtin:simple/1 + called from: + logicTranslationUtilities:consolidateTermFunctor/4 + solsticeUtility:primitiveEquality/1 + +solsticeUtility:primitiveEquality/1 solsticeUtility.pro:202:206 + subgoals: + solsticeUtility:primitive/1 + no callers + +solsticeUtility:recall/2 dynamic solsticeUtility.pro:0:0 + modified in: + solsticeUtility:callOrRecall/1 + no subgoals + called from: + solsticeUtility:callOrRecall/1 + +solsticeUtility:resetAllAtomGeneration/0 solsticeUtility.pro:192:195 + subgoals: + builtin:retractall/1 + called from: + executeMiniProgram:build/2 + executeMiniProgram:buildDfm/2 + executeMiniProgram:buildDfm/4 + +solsticeUtility:resetAtomGeneration/1 solsticeUtility.pro:195:198 + subgoals: + builtin:retractall/1 + called from: + logicTranslationUtilities:isomorphicConsolidate/3 + +solsticeUtility:spaces/2 solsticeUtility.pro:514:516 + subgoals: + builtin: =< /2 + solsticeUtility:atom_concat/2 + builtin:is/2 + solsticeUtility:spaces/2 + called from: + solsticeUtility:pretty_print/3 + solsticeUtility:pretty_print_list/3 + solsticeUtility:pretty_print_term/3 + solsticeUtility:spaces/2 + +solsticeUtility:splitAtom/3 solsticeUtility.pro:217:224 + subgoals: + builtin: = /2 + builtin:atom_codes/2 + solsticeUtility:characterCodesToAtoms/2 + solsticeUtility:splitCharacterCodes/3 + called from: + applicationFunction:processDB2Position/6 + applicationFunction:retrieveConceptByStmt/3 + dfmTraversal:write_missing_arclist/3 + logicTranslator:getFieldSizeFromOntology/5 + ontology:getMinMaxFromAtom/3 + preProcess:initializeDebug/2 + preProcess:runCfm/3 + preProcess:runDfm/3 + semantics:execute/5 + tclScreen:setVars/1 + tclScreen:tclScreen/6 + +solsticeUtility:splitCharacterCodes/3 solsticeUtility.pro:229:232 + subgoals: + lists:append/2 + solsticeUtility:splitCharacterCodes/3 + called from: + solsticeUtility:splitAtom/3 + solsticeUtility:splitCharacterCodes/3 + +solsticeUtility:splitCharacterCodesOnPredicate/4 solsticeUtility.pro:236:238 + subgoals: + builtin: = /2 + builtin:(\+)/1 + builtin:append/3 + solsticeUtility:splitCharacterCodesOnPredicate/4 + solsticeUtility:call/2 + called from: + ontology:convertTclScreenToOntologyName/2 + ontology:getColumnNameNodeString/2 + solsticeUtility:splitCharacterCodesOnPredicate/4 + +solsticeUtility:structToList/2 solsticeUtility.pro:89:95 + subgoals: + solsticeUtility:structToList/2 + builtin:var/1 + called from: + dfmCreate:createDependencies/4 + reasoningEngine:resolveFeasibilityHelper/6 + reasoningEngine:resolveFeasibilityOfNode/5 + semantics:execute/5 + solsticeUtility:structToList/2 + +solsticeUtility:subtermMember/2 solsticeUtility.pro:66:70 + subgoals: + builtin: =.. /2 + builtin:member/2 + builtin:nonvar/1 + solsticeUtility:subtermMember/2 + called from: + applicationModel:localizeNodeName/3 + backSubstituter:simplifyArithmeticExpr/2 + dfmStep:findAFunction/3 + loopRewriter:createInnerIfConditions/3 + loopRewriter:getIterationVar/7 + rankingFunction:getMaxAndMinIterVarIsIncreasing/6 + rankingFunction:getVariableMaxIterations/10 + solsticeUtility:subtermMember/2 + +solsticeUtility:subtermSelect/4 solsticeUtility.pro:76:79 + subgoals: + builtin: =.. /2 + builtin:nonvar/1 + lists:same_length/2 + lists:select/4 + solsticeUtility:subtermSelect/4 + called from: + applicationModel:localizeNodeName/3 + backSubstituter:simplifyArithmeticExpr/2 + dfmCreate:varsAexp/2 + logicTranslationUtilities:isomorphicConsolidate/4 + loopRewriter:createInnerIfConditions/3 + solsticeUtility:subtermSelect/4 + +solsticeUtility:subterms_atom/2 solsticeUtility.pro:395:397 + subgoals: + solsticeUtility:atom_concat/2 + solsticeUtility:subterms_atom/2 + solsticeUtility:toAtom/2 + called from: + solsticeUtility:subterms_atom/2 + solsticeUtility:term_atom/2 + +solsticeUtility:tautology/1 solsticeUtility.pro:138:144 + subgoals: + builtin:(\+)/1 + solsticeUtility:ground/2 + called from: + solsticeUtility:callOrRecall/1 + +solsticeUtility:termToAtom/2 solsticeUtility.pro:198:202 + subgoals: + builtin:atom_codes/2 + undefined:write_to_codes/2 + called from: + transactionInterface:getEventName/3 + +solsticeUtility:term_atom/2 solsticeUtility.pro:383:385 + subgoals: + builtin: =.. /2 + solsticeUtility:atom_concat/2 + builtin:current_op/3 + solsticeUtility:subterms_atom/2 + solsticeUtility:toAtom/2 + called from: + query_interface:readFileTerms/3 + solsticeUtility:pretty_print_term/3 + solsticeUtility:toAtom/2 + +solsticeUtility:toAtom/2 solsticeUtility.pro:358:360 + subgoals: + builtin:atom/1 + builtin:atom_codes/2 + lists:is_list/1 + solsticeUtility:list_atom/2 + builtin:number/1 + builtin:number_codes/2 + solsticeUtility:term_atom/2 + builtin:var/1 + called from: + solsticeUtility:elements_atom/2 + solsticeUtility:subterms_atom/2 + solsticeUtility:term_atom/2 + +solsticeUtility:toLower/2 solsticeUtility.pro:301:308 + subgoals: + builtin:is/2 + solsticeUtility:isUpper/1 + called from: + ontology:convertTclScreenToOntologyName/2 + ontology:getColumnNameNodeString/2 + ontology:wordToCapitalizedWord/2 + +solsticeUtility:toUpper/2 solsticeUtility.pro:310:315 + subgoals: + builtin:(\+)/1 + builtin:is/2 + called from: + ontology:wordToCapitalizedWord/2 + +solsticeUtility:writeToStream/2 solsticeUtility.pro:344:348 + subgoals: + builtin:close/1 + builtin:nl/1 + builtin:write/2 + solsticeUtility:writeToStream/2 + builtin:writeq/2 + called from: + solsticeUtility:cleanup/1 + solsticeUtility:writeToStream/2 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro + +taggedParsing: : /2 taggedParsing.pro:53:66 + subgoals: + builtin: =.. /2 + builtin:append/3 + taggedParsing:convertBody/6 + builtin:if/3 + taggedParsing:selectPredicate/4 + no callers + +taggedParsing:(:-)/1 taggedParsing.pro:48:49 + no subgoals + no callers + +taggedParsing:convertBody/6 taggedParsing.pro:69:75 + subgoals: + taggedParsing:convertBodyList/6 + taggedParsing:structToList/2 + called from: + taggedParsing: : /2 + taggedParsing:convertBodyList/6 + +taggedParsing:convertBodyList/6 taggedParsing.pro:75:80 + subgoals: + builtin: = /2 + builtin: =.. /2 + builtin:append/3 + taggedParsing:convertBody/6 + taggedParsing:convertBodyList/6 + builtin:if/3 + lists:is_list/1 + lists:keys_and_values/3 + taggedParsing:selectPredicate/4 + builtin:var/1 + called from: + taggedParsing:convertBody/6 + taggedParsing:convertBodyList/6 + +taggedParsing:mergeTags/2 taggedParsing.pro:171:176 + subgoals: + builtin:(\+)/1 + lists:append/2 + lists:delete/3 + lists:max_member/2 + lists:min_member/2 + lists:reverse/2 + lists:transpose/2 + called from: + taggedParsing:tagPhraseList/6 + +taggedParsing:selectPredicate/4 taggedParsing.pro:66:68 + no subgoals + called from: + taggedParsing: : /2 + taggedParsing:convertBodyList/6 + +taggedParsing:structToList/2 taggedParsing.pro:198:203 + subgoals: + taggedParsing:structToList/2 + builtin:var/1 + called from: + taggedParsing:convertBody/6 + taggedParsing:structToList/2 + taggedParsing:tagPhrase/6 + +taggedParsing:tagLines/2 taggedParsing.pro:185:189 + subgoals: + taggedParsing:tagLines/3 + called from: + tokenize:tokens/3 + +taggedParsing:tagLines/3 taggedParsing.pro:189:191 + subgoals: + taggedParsing:tagLines/4 + called from: + taggedParsing:tagLines/2 + +taggedParsing:tagLines/4 taggedParsing.pro:191:194 + subgoals: + builtin:is/2 + taggedParsing:tagLines/4 + called from: + taggedParsing:tagLines/3 + taggedParsing:tagLines/4 + +taggedParsing:tagPhrase/5 taggedParsing.pro:124:128 + subgoals: + taggedParsing:tagPhrase/6 + no callers + +taggedParsing:tagPhrase/6 taggedParsing.pro:128:133 + subgoals: + builtin:if/3 + taggedParsing:structToList/2 + taggedParsing:tagPhraseList/6 + called from: + taggedParsing:tagPhrase/5 + taggedParsing:tagPhraseList/6 + +taggedParsing:tagPhraseList/6 taggedParsing.pro:133:139 + subgoals: + builtin: = /2 + builtin:append/3 + builtin:call/1 + builtin:call/5 + builtin:if/3 + lists:is_list/1 + lists:keys_and_values/3 + taggedParsing:mergeTags/2 + taggedParsing:tagPhrase/6 + taggedParsing:tagPhraseList/6 + taggedParsing:mergeTags/2 + called from: + taggedParsing:tagPhrase/6 + taggedParsing:tagPhraseList/6 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/tclGui.pro + +tclGui:tclQueryBox/2 tclGui.pro:3:36 + subgoals: + builtin: = /2 + lists:append/2 + builtin:atom_codes/2 + undefined:tcl_delete/1 + undefined:tcl_eval/3 + undefined:tk_main_loop/0 + undefined:tk_new/2 + called from: + semantics:execute/5 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro + +tclScreen:_atomic_to_atom/2 screenTclGui.pro:428:431 + subgoals: + builtin:atom/1 + builtin:atom_codes/2 + builtin:number/1 + builtin:number_codes/2 + called from: + tclScreen:atomics_concat/3 + +tclScreen:atomListElement/3 screenTclGui.pro:351:361 + subgoals: + builtin: = /2 + builtin:memberchk/2 + builtin:phrase/3 + called from: + tclScreen:listElement/3 + +tclScreen:atom_var/2 screenTclGui.pro:288:297 + subgoals: + builtin: = /2 + builtin:atom/1 + builtin:atom_codes/2 + builtin:number/1 + builtin:number_codes/2 + called from: + tclScreen:validKeys/4 + +tclScreen:atomics_concat/2 screenTclGui.pro:414:420 + subgoals: + tclScreen:atomics_concat/3 + called from: + tclScreen:tclSourceCommand/2 + +tclScreen:atomics_concat/3 screenTclGui.pro:420:423 + subgoals: + tclScreen:_atomic_to_atom/2 + builtin:atom_concat/3 + tclScreen:atomics_concat/3 + called from: + tclScreen:atomics_concat/2 + tclScreen:atomics_concat/3 + tclScreen:formatValueList/5 + +tclScreen:env/1 dynamic screenTclGui.pro:0:0 + modified in: + tclScreen:tclScreen/6 + no subgoals + called from: + tclScreen:setVars/1 + +tclScreen:fileFilter/2 screenTclGui.pro:146:159 + subgoals: + builtin:atom_codes/2 + tclScreen:fileFilter/3 + builtin:number/1 + builtin:number_codes/2 + called from: + tclScreen:loadFileRecords/1 + +tclScreen:fileFilter/3 screenTclGui.pro:159:161 + subgoals: + builtin: = /2 + lists:append/2 + tclScreen:fileFilter/3 + tclScreen:fileFilterClause/3 + called from: + tclScreen:fileFilter/2 + tclScreen:fileFilter/3 + +tclScreen:fileFilterClause/3 screenTclGui.pro:168:174 + subgoals: + builtin: = /2 + lists:append/2 + builtin:atom_codes/2 + tclScreen:fileOption/3 + called from: + tclScreen:fileFilter/3 + +tclScreen:fileOption/3 screenTclGui.pro:176:178 + subgoals: + builtin: = /2 + builtin:atom_codes/2 + called from: + tclScreen:fileFilterClause/3 + +tclScreen:fileRecords/1 dynamic screenTclGui.pro:0:0 + modified in: + tclScreen:loadFileRecords/1 + no subgoals + called from: + tclScreen:setFileRecords/3 + +tclScreen:filterArgs/3 screenTclGui.pro:131:139 + subgoals: + builtin: = /2 + builtin:(\+)/1 + tclScreen:filterArgs/3 + builtin:var/1 + called from: + tclScreen:filterArgs/3 + tclScreen:loadFileRecords/1 + +tclScreen:formatRecordKey/2 screenTclGui.pro:277:286 + subgoals: + builtin: = /2 + builtin:atom_codes/2 + tclScreen:list_codes/3 + tclScreen:tclEscapedArgs/3 + called from: + tclScreen:validRecord/4 + +tclScreen:formatValueList/5 screenTclGui.pro:409:414 + subgoals: + builtin:atom_concat/3 + tclScreen:atomics_concat/3 + called from: + tclScreen:loadFileRecords/1 + tclScreen:screenInit/0 + tclScreen:setFileRecords/3 + +tclScreen:handleMainLoop/1 screenTclGui.pro:396:398 + subgoals: + builtin:throw/1 + called from: + tclScreen:launchMainLoop/1 + +tclScreen:handleProcedure/2 screenTclGui.pro:389:393 + subgoals: + log:log/2 + builtin:throw/1 + called from: + tclScreen:launchProcedure/2 + +tclScreen:handleScriptLaunch/1 screenTclGui.pro:379:384 + subgoals: + builtin: = /2 + builtin:atom_codes/2 + builtin:atom_concat/3 + builtin:throw/1 + called from: + tclScreen:launchScript/2 + +tclScreen:keyFilter/2 screenTclGui.pro:186:200 + subgoals: + builtin:atom_codes/2 + tclScreen:keyFilter/3 + builtin:number/1 + builtin:number_codes/2 + called from: + tclScreen:loadFileRecords/1 + +tclScreen:keyFilter/3 screenTclGui.pro:200:202 + subgoals: + builtin: = /2 + lists:append/2 + tclScreen:keyFilter/3 + tclScreen:keyOptionList/3 + called from: + tclScreen:keyFilter/2 + tclScreen:keyFilter/3 + +tclScreen:keyOption/3 screenTclGui.pro:228:230 + subgoals: + builtin: = /2 + builtin:atom_codes/2 + called from: + tclScreen:keyOptionClause/3 + +tclScreen:keyOptionClause/3 screenTclGui.pro:220:226 + subgoals: + builtin: = /2 + lists:append/2 + builtin:atom_codes/2 + tclScreen:keyOption/3 + called from: + tclScreen:keyOptionList/3 + +tclScreen:keyOptionList/3 screenTclGui.pro:212:218 + subgoals: + lists:append/2 + tclScreen:keyOptionClause/3 + tclScreen:keyOptionList/3 + called from: + tclScreen:keyFilter/3 + tclScreen:keyOptionList/3 + +tclScreen:launchMainLoop/1 screenTclGui.pro:393:396 + subgoals: + tclScreen:handleMainLoop/1 + undefined:tk_main_loop/0 + called from: + tclScreen:tclScreen/6 + +tclScreen:launchProcedure/2 screenTclGui.pro:386:389 + subgoals: + tclScreen:handleProcedure/2 + undefined:tcl_eval/3 + called from: + tclScreen:loadFileRecords/1 + tclScreen:screenInit/0 + tclScreen:setFileRecords/3 + +tclScreen:launchScript/2 screenTclGui.pro:376:379 + subgoals: + tclScreen:handleScriptLaunch/1 + undefined:tcl_eval/3 + called from: + tclScreen:tclScreen/6 + +tclScreen:listElement/3 screenTclGui.pro:341:346 + subgoals: + builtin:atom/1 + tclScreen:atomListElement/3 + builtin:atom_codes/2 + builtin:number/1 + builtin:number_codes/2 + builtin:phrase/3 + called from: + tclScreen:listElements/3 + +tclScreen:listElements/3 screenTclGui.pro:326:331 + subgoals: + builtin: = /2 + builtin: > /2 + builtin:length/2 + tclScreen:listElement/3 + tclScreen:listElements/3 + tclScreen:list_codes/3 + called from: + tclScreen:listElements/3 + tclScreen:list_codes/3 + +tclScreen:list_codes/3 screenTclGui.pro:317:321 + subgoals: + builtin: = /2 + builtin:length/2 + tclScreen:listElements/3 + called from: + tclScreen:formatRecordKey/2 + tclScreen:listElements/3 + +tclScreen:loadFileRecords/1 screenTclGui.pro:114:131 + subgoals: + tclScreen:fileFilter/2 + tclScreen:filterArgs/3 + builtin:findall/3 + tclScreen:formatValueList/5 + tclScreen:keyFilter/2 + tclScreen:launchProcedure/2 + builtin:length/2 + tclScreen:screenArguments/1 + tclScreen:tclInterpreter/1 + tclScreen:unnestedList/3 + assert-tclScreen:fileRecords/1 + no callers + +tclScreen:newEnv/1 dynamic screenTclGui.pro:0:0 + modified in: + tclScreen:setVars/1 + tclScreen:tclScreen/6 + no subgoals + called from: + tclScreen:tclScreen/6 + +tclScreen:screenArguments/1 dynamic screenTclGui.pro:0:0 + modified in: + tclScreen:tclScreen/6 + no subgoals + called from: + tclScreen:loadFileRecords/1 + tclScreen:screenInit/0 + +tclScreen:screenFullPath/1 dynamic screenTclGui.pro:0:0 + modified in: + tclScreen:tclScreen/6 + no subgoals + called from: + tclScreen:setVars/1 + +tclScreen:screenInit/0 screenTclGui.pro:104:114 + subgoals: + tclScreen:formatValueList/5 + tclScreen:launchProcedure/2 + tclScreen:screenArguments/1 + tclScreen:tclInterpreter/1 + no callers + +tclScreen:setFileRecords/3 screenTclGui.pro:238:250 + subgoals: + tclScreen:fileRecords/1 + tclScreen:formatValueList/5 + tclScreen:launchProcedure/2 + builtin:length/2 + lists:sublist/5 + tclScreen:tclInterpreter/1 + no callers + +tclScreen:setVariable/4 screenTclGui.pro:480:485 + subgoals: + semantics:atomOrNumber/2 + semantics:setVar/4 + called from: + tclScreen:setVariables/4 + +tclScreen:setVariables/4 screenTclGui.pro:474:476 + subgoals: + tclScreen:setVariable/4 + tclScreen:setVariables/4 + called from: + tclScreen:setVariables/4 + tclScreen:setVars/1 + +tclScreen:setVars/1 screenTclGui.pro:435:466 + subgoals: + builtin: = /2 + builtin:abolish/1 + tclScreen:env/1 + screenUtility:filterListOfVars/3 + screenUtility:getTrueFalseEditableListFromTCLFile/2 + builtin:ground/1 + builtin:length/2 + tclScreen:screenFullPath/1 + tclScreen:setVariables/4 + solsticeUtility:splitAtom/3 + builtin:throw/1 + tclScreen:variables/1 + assert-tclScreen:newEnv/1 + no callers + +tclScreen:tclEscapedArg/3 screenTclGui.pro:94:96 + subgoals: + builtin: = /2 + builtin: == /2 + tclScreen:tclEscapedArg/3 + called from: + tclScreen:tclEscapedArg/3 + tclScreen:tclEscapedArgs/3 + +tclScreen:tclEscapedArgs/3 screenTclGui.pro:78:83 + subgoals: + builtin: = /2 + builtin:atom_codes/2 + tclScreen:tclEscapedArg/3 + tclScreen:tclEscapedArgs/3 + called from: + tclScreen:formatRecordKey/2 + tclScreen:tclEscapedArgs/3 + +tclScreen:tclInterpreter/1 dynamic screenTclGui.pro:0:0 + modified in: + tclScreen:tclScreen/6 + no subgoals + called from: + tclScreen:loadFileRecords/1 + tclScreen:screenInit/0 + tclScreen:setFileRecords/3 + +tclScreen:tclScreen/6 screenTclGui.pro:18:74 + subgoals: + builtin:abolish/1 + lists:append/2 + builtin:atom_codes/2 + builtin:atom_concat/3 + lists:head/2 + lists:last/2 + tclScreen:launchMainLoop/1 + tclScreen:launchScript/2 + tclScreen:newEnv/1 + builtin:retractall/1 + solsticeUtility:splitAtom/3 + tclScreen:tclSourceCommand/2 + undefined:tcl_delete/1 + undefined:tk_main_loop/0 + undefined:tk_new/2 + tclScreen:varListToValues/3 + fileInformation:filePath/1 + assert-tclScreen:env/1 + assert-tclScreen:newEnv/1 + assert-tclScreen:screenArguments/1 + assert-tclScreen:screenFullPath/1 + assert-tclScreen:tclInterpreter/1 + assert-tclScreen:variables/1 + called from: + semantics:execute/5 + +tclScreen:tclSourceCommand/2 screenTclGui.pro:74:78 + subgoals: + lists:append/2 + tclScreen:atomics_concat/2 + called from: + tclScreen:tclScreen/6 + +tclScreen:unnestedList/3 screenTclGui.pro:363:367 + subgoals: + builtin: = /2 + builtin:length/2 + tclScreen:unnestedList/3 + called from: + tclScreen:loadFileRecords/1 + tclScreen:unnestedList/3 + tclScreen:verifyKey/2 + +tclScreen:validKeys/4 screenTclGui.pro:304:308 + subgoals: + builtin: = /2 + builtin: == /2 + tclScreen:atom_var/2 + builtin:memberchk/2 + tclScreen:validKeys/4 + called from: + tclScreen:validKeys/4 + tclScreen:verifyKey/2 + +tclScreen:validRecord/4 screenTclGui.pro:250:262 + subgoals: + lists:append/2 + tclScreen:formatRecordKey/2 + builtin:length/2 + builtin:memberchk/2 + tclScreen:verifyKey/2 + user:fileRecord/3 + no callers + +tclScreen:varListToValues/3 screenTclGui.pro:398:400 + subgoals: + builtin:(\+)/1 + builtin:memberchk/2 + builtin:var/1 + tclScreen:varListToValues/3 + called from: + tclScreen:tclScreen/6 + tclScreen:varListToValues/3 + +tclScreen:variables/1 dynamic screenTclGui.pro:0:0 + modified in: + tclScreen:tclScreen/6 + no subgoals + called from: + tclScreen:setVars/1 + +tclScreen:verifyKey/2 screenTclGui.pro:262:270 + subgoals: + builtin: = /2 + builtin: == /2 + builtin:length/2 + tclScreen:unnestedList/3 + tclScreen:validKeys/4 + called from: + tclScreen:validRecord/4 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro + +tokenize:alphanumericCharCode/1 tokenize.pro:66:67 + subgoals: + builtin:./2 + tokenize:digitCode/1 + tokenize:letterCode/1 + undefined:{}/1 + called from: + tokenize:alphanumericCode/1 + +tokenize:alphanumericCode/1 tokenize.pro:64:65 + subgoals: + builtin:[]/0 + tokenize:alphanumericCharCode/1 + tokenize:alphanumericCode/1 + called from: + tokenize:alphanumericCode/1 + tokenize:capitalizedAlphanumericToken/1 + tokenize:uncapitalizedAlphanumericToken/1 + +tokenize:capitalize/2 tokenize.pro:104:107 + subgoals: + builtin:is/2 + no callers + +tokenize:capitalizedAlphanumericToken/1 tokenize.pro:61:63 + subgoals: + tokenize:alphanumericCode/1 + tokenize:uppercaseLetterCode/1 + undefined:{}/1 + called from: + tokenize:token/1 + +tokenize:digitCode/1 tokenize.pro:84:85 + subgoals: + builtin:./2 + undefined:{}/1 + called from: + tokenize:alphanumericCharCode/1 + tokenize:doubleCode/1 + tokenize:numberCode/1 + tokenize:numberToken/1 + +tokenize:doubleCode/1 tokenize.pro:78:81 + subgoals: + builtin:./2 + tokenize:digitCode/1 + tokenize:numberCode/1 + undefined:{}/1 + called from: + tokenize:numberToken/1 + +tokenize:fileTokens/2 tokenize.pro:16:23 + subgoals: + builtin:[]/0 + builtin:append/3 + tokenize:fileTokens/2 + undefined:fullLineTokens/3 + called from: + tokenize:fileTokens/2 + tokenize:tokens/3 + +tokenize:fullLineTokens/1 tokenize.pro:25:29 + subgoals: + builtin:./2 + tokenize:lineTokens/1 + tokenize:margin/1 + tokenize:stringCharecterCodes/1 + undefined:{}/1 + no callers + +tokenize:language/1 dynamic tokenize.pro:0:0 + modified in: + tokenize:tokens/3 + no subgoals + no callers + +tokenize:letterCode/1 tokenize.pro:69:70 + subgoals: + tokenize:lowercaseLetterCode/1 + tokenize:uppercaseLetterCode/1 + undefined:{}/1 + called from: + tokenize:alphanumericCharCode/1 + +tokenize:lineTokens/1 tokenize.pro:33:37 + subgoals: + undefined:(-)/2 + builtin:./2 + tokenize:lineTokens/1 + tokenize:stringCharecterCodes/1 + tokenize:whitespace/0 + undefined:{}/1 + called from: + tokenize:fullLineTokens/1 + tokenize:lineTokens/1 + +tokenize:lowercaseLetterCode/1 tokenize.pro:74:75 + subgoals: + builtin:./2 + undefined:{}/1 + called from: + tokenize:letterCode/1 + tokenize:uncapitalizedAlphanumericToken/1 + +tokenize:margin/1 tokenize.pro:101:103 + subgoals: + builtin:./2 + builtin:[]/0 + tokenize:margin/1 + undefined:{}/1 + called from: + tokenize:fullLineTokens/1 + tokenize:margin/1 + +tokenize:numberCode/1 tokenize.pro:81:83 + subgoals: + builtin:[]/0 + tokenize:digitCode/1 + tokenize:numberCode/1 + called from: + tokenize:doubleCode/1 + tokenize:numberCode/1 + tokenize:numberToken/1 + +tokenize:numberToken/1 tokenize.pro:75:77 + subgoals: + tokenize:digitCode/1 + tokenize:doubleCode/1 + tokenize:numberCode/1 + undefined:{}/1 + called from: + tokenize:token/1 + +tokenize:punctuationToken/1 tokenize.pro:97:99 + subgoals: + builtin:./2 + undefined:{}/1 + called from: + tokenize:stringToken/1 + tokenize:token/1 + +tokenize:stringCharecterCode/1 tokenize.pro:91:94 + subgoals: + builtin:./2 + called from: + tokenize:stringCharecterCodes/1 + +tokenize:stringCharecterCodes/1 tokenize.pro:89:90 + subgoals: + builtin:[]/0 + tokenize:stringCharecterCode/1 + tokenize:stringCharecterCodes/1 + called from: + tokenize:fullLineTokens/1 + tokenize:lineTokens/1 + tokenize:stringCharecterCodes/1 + tokenize:stringCharecters/1 + +tokenize:stringCharecters/1 tokenize.pro:87:89 + subgoals: + tokenize:stringCharecterCodes/1 + undefined:{}/1 + called from: + tokenize:stringToken/1 + +tokenize:stringToken/1 tokenize.pro:85:87 + subgoals: + tokenize:punctuationToken/1 + tokenize:stringCharecters/1 + called from: + tokenize:token/1 + +tokenize:token/1 tokenize.pro:49:51 + subgoals: + tokenize:capitalizedAlphanumericToken/1 + tokenize:numberToken/1 + tokenize:punctuationToken/1 + tokenize:stringToken/1 + tokenize:uncapitalizedAlphanumericToken/1 + undefined:whiteSpaceToken/1 + no callers + +tokenize:tokens/3 tokenize.pro:10:16 + subgoals: + tokenize:fileTokens/2 + taggedParsing:tagLines/2 + assert-tokenize:language/1 + retract-tokenize:language/1 + called from: + miniCParse:getFileDefinitionsC/2 + miniCobolParse:getFileDefinitionsCobol/2 + +tokenize:uncapitalizedAlphanumericToken/1 tokenize.pro:63:64 + subgoals: + tokenize:alphanumericCode/1 + tokenize:lowercaseLetterCode/1 + undefined:{}/1 + called from: + tokenize:token/1 + +tokenize:uppercaseLetterCode/1 tokenize.pro:73:74 + subgoals: + builtin:./2 + undefined:{}/1 + called from: + tokenize:capitalizedAlphanumericToken/1 + tokenize:letterCode/1 + +tokenize:whitespace/0 tokenize.pro:56:58 + subgoals: + builtin:[]/0 + tokenize:whitespace/0 + tokenize:whitespaceCharCode/0 + called from: + tokenize:lineTokens/1 + tokenize:whitespace/0 + +tokenize:whitespaceCharCode/0 tokenize.pro:59:60 + subgoals: + builtin:./2 + undefined:{}/1 + called from: + tokenize:whitespace/0 + +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/transactionInterface.pro + +transactionInterface:cleanUp/0 transactionInterface.pro:143:155 + subgoals: + transactionInterface:getTransactionDomain/1 + builtin:retractall/1 + called from: + sessionManager:cleanUpRepresentations/0 + transactionInterface:loadTransactionsForCurrentProject/0 + +transactionInterface:getEventName/3 transactionInterface.pro:105:109 + subgoals: + builtin: = /2 + solsticeUtility:atom_concat/2 + lists:is_list/1 + builtin:member/2 + solsticeUtility:termToAtom/2 + no callers + +transactionInterface:getTransactionDomain/1 transactionInterface.pro:155:160 + no subgoals + called from: + transactionInterface:cleanUp/0 + transactionInterface:loadTransactionsForCurrentProject/0 + +transactionInterface:loadRepresentation/2 transactionInterface.pro:133:143 + subgoals: + builtin:(\+)/1 + builtin:assert/1 + transactionInterface:loadRepresentation/2 + builtin:read/2 + called from: + transactionInterface:loadRepresentation/2 + transactionInterface:loadTransactionsForCurrentProject/0 + +transactionInterface:loadTransactionsForCurrentProject/0 transactionInterface.pro:116:132 + subgoals: + transactionInterface:cleanUp/0 + file_systems:file_exists/1 + transactionInterface:getTransactionDomain/1 + sessionManager:getTransactionPath/1 + transactionInterface:loadRepresentation/2 + log:log/2 + builtin:open/3 + called from: + sessionManager:assertRepresentations/0 + +user + +user:currentIndex/1 dynamic + modified in: + semantics:execute/5 + no subgoals + called from: + semantics:execute/5 + +user:currentStream/1 dynamic + modified in: + diagnostics:close_log_file/0 + diagnostics:open_log_file/0 + no subgoals + called from: + diagnostics:close_log_file/0 + diagnostics:log/2 + +user:cursorQuery/1 dynamic + modified in: + semantics:execute/5 + no subgoals + called from: + semantics:execute/5 + +user:dbRow/2 dynamic + modified in: + semantics:execute/5 + no subgoals + called from: + semantics:execute/5 + semantics:getColumnValues/3 + semantics:runWhereQueries/2 + +user:fileRecord/3 dynamic + modified in: + semantics:changeFile/3 + no subgoals + called from: + semantics:deleteFile/2 + semantics:execute/5 + semantics:fileExists/1 + semantics:getGTEfileRecord/3 + semantics:getNextRecord/3 + semantics:keyIsValid/4 + semantics:notValid/5 + tclScreen:validRecord/4 + +user:nextRecord/2 dynamic + modified in: + semantics:execute/5 + no subgoals + no callers + +user:representation/2 dynamic + modified in: + preProcess:initializeDebug/2 + preProcess:loadModule/1 + preProcess:runCfm/3 + preProcess:runDfm/3 + no subgoals + called from: + cfmStep:cfmNodeStep/4 + cfmStep:findNextNode/3 + dfmStep:dfmNodeStep/4 + dfmStep:findAFunction/3 + dfmStep:findDependencies/4 + dfmStep:findFunctions/3 + preProcess:loadModule/1 + semantics:execute/5 + semantics:executeNode/5 + semantics:findInitialNodes/3 + semantics:functionStep/4 + semantics:keyIsValid/4 + semantics:notValid/5 +*** done with xreport *** + +----- Going Down log:setLogLevel/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +log.pro 28:38 + +log:setLogLevel/1 uses: +> log:set_flag/2 +> > assert-log:flag/2 +> > retract-log:flag/2 + +----- Going Down log:callfail/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +log.pro 106:111 + +log:callfail/1 uses: +> builtin:nl/0 +> builtin:write/1 + +----- Going Down log:exitredo/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +log.pro 112:114 + +log:exitredo/1 uses: +> builtin:nl/0 +> builtin:write/1 + +----- Going Down log:log/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +log.pro 115:123 + +log:log/5 uses: +> log:indent/0 +> > builtin:format/2 +> > log:indentation/1 +> builtin:nl/0 +> builtin:write/1 +> builtin:writeq/1 + +----- Going Down log:callfail/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +log.pro 125:130 + +log:callfail/5 uses: +> log:decIndent/0 +> > builtin: >= /2 +> > log:indentation/1 +> > builtin:is/2 +> > assert-log:indentation/1 +> > retract-log:indentation/1 +> log:incIndent/0 +> > builtin:is/2 +> > assert-log:indentation/1 +> > retract-log:indentation/1 +> log:indent/0 +> > builtin:format/2 +> > log:indentation/1 +> builtin:nl/0 +> builtin:write/1 +> builtin:writeq/1 + +----- Going Down log:exitredo/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +log.pro 134:139 + +log:exitredo/5 uses: +> log:decIndent/0 +> > builtin: >= /2 +> > log:indentation/1 +> > builtin:is/2 +> > assert-log:indentation/1 +> > retract-log:indentation/1 +> log:incIndent/0 +> > builtin:is/2 +> > assert-log:indentation/1 +> > retract-log:indentation/1 +> log:indent/0 +> > builtin:format/2 +> > log:indentation/1 +> builtin:nl/0 +> builtin:write/1 +> builtin:writeq/1 + +----- Going Down operators:(?)/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +operators.pro 36:42 + +operators:(?)/3 uses: +> builtin: =.. /2 +> operators:(?)/1 +> > builtin:call/1 +> > log:logq/2 +> > > log:logq/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > > > builtin:writeq/1 +> > builtin:nl/0 +> builtin:append/3 + +----- Going Down operators:go/0 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +operators.pro 42:46 + +operators:go/0 uses: +> operators:countDown/1 +> > operators:(count)/1 +> > > builtin: =.. /2 +> > > builtin:call/1 +> > > builtin:is/2 +> > > assert-operators:called/2 +> > > retract-operators:called/2 +> > builtin:is/2 + +----- Going Down solsticeUtility:callOrRecall/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +solsticeUtility.pro 124:126 + +solsticeUtility:callOrRecall/1 uses: +> builtin:(\+)/1 +> builtin:call/1 +> solsticeUtility:recall/2 +> solsticeUtility:tautology/1 +> > builtin:(\+)/1 +> > solsticeUtility:ground/2 +> > > builtin:compound/1 +> > > builtin:findall/3 +> > > builtin:functor/3 +> > > builtin:nonvar/1 +> > > builtin:simple/1 +> > > builtin:var/1 +> assert-solsticeUtility:recall/2 + +----- Going Down solsticeUtility:primitiveEquality/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +solsticeUtility.pro 202:206 + +solsticeUtility:primitiveEquality/1 uses: +> solsticeUtility:primitive/1 +> > builtin: =.. /2 +> > builtin:ground/1 +> > lists:is_list/1 +> > builtin:simple/1 + +----- Going Down solsticeUtility:convertToAtom/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +solsticeUtility.pro 262:269 + +solsticeUtility:convertToAtom/2 uses: +> builtin: = /2 +> builtin:atom/1 +> builtin:atom_codes/2 +> builtin:number/1 +> builtin:number_codes/2 + +----- Going Down solsticeUtility:isListOfLists/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +solsticeUtility.pro 281:287 + +solsticeUtility:isListOfLists/1 uses: +> lists:is_list/1 + +----- Going Down solsticeUtility:isDigit/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +solsticeUtility.pro 297:301 + +solsticeUtility:isDigit/1 uses: +> builtin: < /2 +> builtin: > /2 + +----- Going Down solsticeUtility:atomToNumber/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +solsticeUtility.pro 402:410 + +solsticeUtility:atomToNumber/2 uses: +> builtin:atom_codes/2 +> builtin:number_codes/2 + +----- Going Down solsticeUtility:pretty_print/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +solsticeUtility.pro 410:418 + +solsticeUtility:pretty_print/2 uses: +> solsticeUtility:pretty_print/3 +> > builtin:atom/1 +> > builtin:atom_codes/2 +> > lists:is_list/1 +> > builtin:number/1 +> > builtin:number_codes/2 +> > solsticeUtility:pretty_print_list/3 +> > > builtin: =< /2 +> > > builtin:atom_codes/2 +> > > builtin:is/2 +> > > builtin:length/2 +> > > solsticeUtility:list_atom/2 +> > > > solsticeUtility:atom_concat/2 +> > > > > lists:append/2 +> > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:ground/1 +> > > > solsticeUtility:elements_atom/2 +> > > > > solsticeUtility:atom_concat/2 +> > > > > > lists:append/2 +> > > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:ground/1 +> > > > > solsticeUtility:elements_atom/2 ***** looping ***** +> > > > > solsticeUtility:toAtom/2 +> > > > > > builtin:atom/1 +> > > > > > builtin:atom_codes/2 +> > > > > > lists:is_list/1 +> > > > > > solsticeUtility:list_atom/2 ***** looping ***** +> > > > > > builtin:number/1 +> > > > > > builtin:number_codes/2 +> > > > > > solsticeUtility:term_atom/2 +> > > > > > > builtin: =.. /2 +> > > > > > > solsticeUtility:atom_concat/2 +> > > > > > > > lists:append/2 +> > > > > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > builtin:ground/1 +> > > > > > > builtin:current_op/3 +> > > > > > > solsticeUtility:subterms_atom/2 +> > > > > > > > solsticeUtility:atom_concat/2 +> > > > > > > > > lists:append/2 +> > > > > > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > builtin:ground/1 +> > > > > > > > solsticeUtility:subterms_atom/2 ***** looping ***** +> > > > > > > > solsticeUtility:toAtom/2 ***** looping ***** +> > > > > > > solsticeUtility:toAtom/2 ***** looping ***** +> > > > > > builtin:var/1 +> > > solsticeUtility:pretty_print_elements/3 +> > > > solsticeUtility:pretty_print/3 ***** looping ***** +> > > > solsticeUtility:pretty_print_elements/3 ***** looping ***** +> > > > builtin:write/1 +> > > solsticeUtility:spaces/2 +> > > > builtin: =< /2 +> > > > solsticeUtility:atom_concat/2 +> > > > > lists:append/2 +> > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:ground/1 +> > > > builtin:is/2 +> > > > solsticeUtility:spaces/2 ***** looping ***** +> > > builtin:write/1 +> > solsticeUtility:pretty_print_term/3 +> > > builtin: =.. /2 +> > > builtin: =< /2 +> > > builtin:atom_codes/2 +> > > builtin:current_op/3 +> > > builtin:is/2 +> > > builtin:length/2 +> > > solsticeUtility:pretty_print/3 ***** looping ***** +> > > solsticeUtility:pretty_print_subterms/3 +> > > > solsticeUtility:pretty_print/3 ***** looping ***** +> > > > solsticeUtility:pretty_print_subterms/3 ***** looping ***** +> > > > builtin:write/1 +> > > solsticeUtility:spaces/2 +> > > > builtin: =< /2 +> > > > solsticeUtility:atom_concat/2 +> > > > > lists:append/2 +> > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:ground/1 +> > > > builtin:is/2 +> > > > solsticeUtility:spaces/2 ***** looping ***** +> > > solsticeUtility:term_atom/2 +> > > > builtin: =.. /2 +> > > > solsticeUtility:atom_concat/2 +> > > > > lists:append/2 +> > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:ground/1 +> > > > builtin:current_op/3 +> > > > solsticeUtility:subterms_atom/2 +> > > > > solsticeUtility:atom_concat/2 +> > > > > > lists:append/2 +> > > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:ground/1 +> > > > > solsticeUtility:subterms_atom/2 ***** looping ***** +> > > > > solsticeUtility:toAtom/2 +> > > > > > builtin:atom/1 +> > > > > > builtin:atom_codes/2 +> > > > > > lists:is_list/1 +> > > > > > solsticeUtility:list_atom/2 +> > > > > > > solsticeUtility:atom_concat/2 +> > > > > > > > lists:append/2 +> > > > > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > builtin:ground/1 +> > > > > > > solsticeUtility:elements_atom/2 +> > > > > > > > solsticeUtility:atom_concat/2 +> > > > > > > > > lists:append/2 +> > > > > > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > builtin:ground/1 +> > > > > > > > solsticeUtility:elements_atom/2 ***** looping ***** +> > > > > > > > solsticeUtility:toAtom/2 ***** looping ***** +> > > > > > builtin:number/1 +> > > > > > builtin:number_codes/2 +> > > > > > solsticeUtility:term_atom/2 ***** looping ***** +> > > > > > builtin:var/1 +> > > > solsticeUtility:toAtom/2 +> > > > > builtin:atom/1 +> > > > > builtin:atom_codes/2 +> > > > > lists:is_list/1 +> > > > > solsticeUtility:list_atom/2 +> > > > > > solsticeUtility:atom_concat/2 +> > > > > > > lists:append/2 +> > > > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > > > builtin:atom_codes/2 +> > > > > > > > builtin:ground/1 +> > > > > > solsticeUtility:elements_atom/2 +> > > > > > > solsticeUtility:atom_concat/2 +> > > > > > > > lists:append/2 +> > > > > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > builtin:ground/1 +> > > > > > > solsticeUtility:elements_atom/2 ***** looping ***** +> > > > > > > solsticeUtility:toAtom/2 ***** looping ***** +> > > > > builtin:number/1 +> > > > > builtin:number_codes/2 +> > > > > solsticeUtility:term_atom/2 ***** looping ***** +> > > > > builtin:var/1 +> > > builtin:write/1 +> > solsticeUtility:spaces/2 +> > > builtin: =< /2 +> > > solsticeUtility:atom_concat/2 +> > > > lists:append/2 +> > > > solsticeUtility:guarded_atom_codes/2 +> > > > > builtin:atom_codes/2 +> > > > > builtin:ground/1 +> > > builtin:is/2 +> > > solsticeUtility:spaces/2 ***** looping ***** +> > builtin:var/1 +> > builtin:write/1 + +----- Going Down solsticeUtility:isTxtFile/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +solsticeUtility.pro 595:599 + +solsticeUtility:isTxtFile/1 uses: +> builtin: = /2 +> builtin:atom_concat/3 + +----- Going Down solsticeUtility:isFileExtension/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +solsticeUtility.pro 599:603 + +solsticeUtility:isFileExtension/2 uses: +> builtin: = /2 +> builtin:atom_concat/3 + +----- Going Down applicationModel:retractModuleFromApplicationModelForCurrentProject/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/DBInterfaces/applicationModel.pro +applicationModel.pro 50:61 + +applicationModel:retractModuleFromApplicationModelForCurrentProject/1 uses: +> applicationModel:retractModuleFromApplicationModel/2 +> > builtin:atom_concat/3 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > builtin:retractall/1 +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 + +----- Going Down applicationModel:refreshModuleInApplicationModelForCurrentProject/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/DBInterfaces/applicationModel.pro +applicationModel.pro 78:110 + +applicationModel:refreshModuleInApplicationModelForCurrentProject/1 uses: +> applicationModel:artifactExtension/1 +> applicationModel:assertModuleIntoApplicationModel/4 +> > applicationModel:assertTermAndReadNext/5 +> > > builtin: =.. /2 +> > > builtin:assert/1 +> > > applicationModel:assertTermAndReadNext/5 ***** looping ***** +> > > applicationModel:localizeNodeName/3 +> > > > builtin: = /2 +> > > > builtin:atom/1 +> > > > builtin:atom_codes/2 +> > > > builtin:atom_concat/3 +> > > > applicationModel:localizeNodeName/3 ***** looping ***** +> > > > builtin:number/1 +> > > > builtin:number_codes/2 +> > > > solsticeUtility:subtermMember/2 +> > > > > builtin: =.. /2 +> > > > > builtin:member/2 +> > > > > builtin:nonvar/1 +> > > > > solsticeUtility:subtermMember/2 ***** looping ***** +> > > > solsticeUtility:subtermSelect/4 +> > > > > builtin: =.. /2 +> > > > > builtin:nonvar/1 +> > > > > lists:same_length/2 +> > > > > lists:select/4 +> > > > > solsticeUtility:subtermSelect/4 ***** looping ***** +> > > builtin:read/2 +> > builtin:atom_concat/3 +> > builtin:close/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > builtin:open/3 +> > builtin:read/2 +> builtin:atom_concat/3 +> applicationModel:retractModuleFromApplicationModel/2 +> > builtin:atom_concat/3 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > builtin:retractall/1 +> sessionManager:getCFMPath/1 +> > sessionManager:getCFMPath/2 +> > > builtin:,/2 +> > > sessionManager:getSessionNamespace/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > sessionManager:getCurrentProject/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> sessionManager:getDFMPath/1 +> > sessionManager:getCurrentProject/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > sessionManager:getDFMPath/2 +> > > builtin:,/2 +> > > sessionManager:getSessionNamespace/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 + +----- Going Down dfm_mappings:stmtType/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +dfm_mappings.pro 56:62 + +dfm_mappings:stmtType/3 uses: +> builtin:,/2 +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 + +----- Going Down dfm_mappings:variable/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +dfm_mappings.pro 120:127 + +dfm_mappings:variable/3 uses: +> undefined:input/3 +> undefined:output/3 + +----- Going Down dfm_mappings:conditionalVar/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +dfm_mappings.pro 127:135 + +dfm_mappings:conditionalVar/3 uses: +> builtin:,/2 +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 + +----- Going Down dfm_mappings:terminalNode/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +dfm_mappings.pro 135:141 + +dfm_mappings:terminalNode/2 uses: +> builtin:,/2 +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 + +----- Going Down dfm_mappings:initialNode/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +dfm_mappings.pro 141:147 + +dfm_mappings:initialNode/2 uses: +> builtin:,/2 +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 + +----- Going Down dfm_mappings:phiByNode/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +dfm_mappings.pro 157:165 + +dfm_mappings:phiByNode/3 uses: +> builtin:,/2 +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 + +----- Going Down dfm_mappings:phiByVar/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +dfm_mappings.pro 165:174 + +dfm_mappings:phiByVar/3 uses: +> builtin:,/2 +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 + +----- Going Down dfm_mappings:moduleName/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +dfm_mappings.pro 180:185 + +dfm_mappings:moduleName/3 uses: +> builtin:,/2 +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 + +----- Going Down dfm_mappings:lineNumber/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +dfm_mappings.pro 208:213 + +dfm_mappings:lineNumber/3 uses: +> builtin: = /2 +> undefined:lineGet1/3 +> undefined:lineGet2/3 + +----- Going Down dfm_mappings:methodName/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +dfm_mappings.pro 223:233 + +dfm_mappings:methodName/3 uses: +> undefined:methodFind/3 +> undefined:piFuncFind/3 + +----- Going Down dfm_mappings:phiFunctions/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +dfm_mappings.pro 236:244 + +dfm_mappings:phiFunctions/3 uses: +> builtin:,/2 +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 + +----- Going Down dfm_mappings:cond/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +dfm_mappings.pro 252:254 + +dfm_mappings:cond/2 uses: +> builtin: =.. /2 + +----- Going Down dfm_mappings:inoutput/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/dfm_mappings.pro +dfm_mappings.pro 255:257 + +dfm_mappings:inoutput/2 uses: +> builtin: =.. /2 + +----- Going Down cfm_mappings:stmtType/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +cfm_mappings.pro 33:38 + +cfm_mappings:stmtType/3 uses: +> builtin:,/2 + +----- Going Down cfm_mappings:initialNodes/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +cfm_mappings.pro 38:45 + +cfm_mappings:initialNodes/3 uses: +> builtin: =.. /2 +> undefined:cond2/2 +> builtin:findall/3 +> cfm_mappings:recursiveTermSearch/2 +> > builtin: = /2 +> > cfm_mappings:recursiveTermSearch/2 ***** looping ***** +> cfm_mappings:recursiveTermSearch/3 +> > builtin: =.. /2 +> > cfm_mappings:recursiveTermSearch/3 ***** looping ***** + +----- Going Down cfm_mappings:initialNode/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +cfm_mappings.pro 49:54 + +cfm_mappings:initialNode/2 uses: +> builtin:,/2 + +----- Going Down cfm_mappings:phiByNode/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +cfm_mappings.pro 62:69 + +cfm_mappings:phiByNode/3 uses: +> builtin:,/2 + +----- Going Down cfm_mappings:phiByVar/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +cfm_mappings.pro 69:77 + +cfm_mappings:phiByVar/3 uses: +> builtin:,/2 + +----- Going Down cfm_mappings:lineNumber/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +cfm_mappings.pro 95:101 + +cfm_mappings:lineNumber/3 uses: +> undefined:lineGet1/3 +> undefined:lineGet2/3 + +----- Going Down cfm_mappings:methodName/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +cfm_mappings.pro 109:114 + +cfm_mappings:methodName/3 uses: +> undefined:methodFind/3 +> undefined:piFuncFind/3 + +----- Going Down cfm_mappings:cond/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +cfm_mappings.pro 116:118 + +cfm_mappings:cond/2 uses: +> builtin: =.. /2 + +----- Going Down cfm_mappings:cond2/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/cfm_mappings.pro +cfm_mappings.pro 119:122 + +cfm_mappings:cond2/3 uses: +> builtin: =.. /2 + +----- Going Down preProcess:(:-)/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +preprocess.pro 9:11 + +preProcess:(:-)/1 uses: + +----- Going Down errorHandler:test_logError/0 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/errorHandler.pro +errorHandler.pro 55:67 + +errorHandler:test_logError/0 uses: +> errorHandler:getAnError/1 +> errorHandler:logError/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > errorHandler:logErrorDetails/1 +> > > builtin:atom/1 +> > > builtin:atom_concat/3 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > > errorHandler:logErrorDetails/1 ***** looping ***** + +----- Going Down screenUtility:screenOutputArgs/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/screenUtility.pro +screenUtility.pro 46:52 + +screenUtility:screenOutputArgs/5 uses: +> builtin: = /2 +> builtin:atom_concat/3 +> screenUtility:filterListOfVars/3 +> > screenUtility:filterListOfVars/3 ***** looping ***** +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> sessionManager:getScreensPath/2 +> > builtin:,/2 +> > sessionManager:getSessionNamespace/1 +> screenUtility:getTrueFalseEditableListFromTCLFile/2 +> > builtin:close/1 +> > screenUtility:getEditLine/2 +> > > builtin: = /2 +> > > lists:append/2 +> > > screenUtility:getEditLine/2 ***** looping ***** +> > > builtin:read_line/2 +> > > builtin:throw/1 +> > screenUtility:getTrueFalseList/3 +> > > builtin: = /2 +> > > screenUtility:bracketed/3 +> > > > builtin: = /2 +> > > > screenUtility:false/2 +> > > > > builtin: = /2 +> > > > screenUtility:true/2 +> > > > > builtin: = /2 +> > > > screenUtility:whitespace/2 +> > > > > builtin: = /2 +> > > > > screenUtility:whitespace/2 ***** looping ***** +> > > screenUtility:getTrueFalseList/3 ***** looping ***** +> > > screenUtility:whitespaceDelimited/3 +> > > > screenUtility:false/2 +> > > > > builtin: = /2 +> > > > screenUtility:true/2 +> > > > > builtin: = /2 +> > > > screenUtility:whitespace/2 +> > > > > builtin: = /2 +> > > > > screenUtility:whitespace/2 ***** looping ***** +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > builtin:open/3 +> builtin:length/2 +> log:log/2 +> > log:log/3 +> > > builtin: =< /2 +> > > log:getLogLevel/1 +> > > > log:get_flag/2 +> > > > > log:flag/2 +> > > log:logType_logLevel/2 +> > > > builtin:number/1 +> > > builtin:nl/0 +> > > log:timestamp/1 +> > > > builtin:atom_concat/3 +> > > > undefined:datime/1 +> > > > log:number_formattedAtom/2 +> > > > > builtin:atom_chars/2 +> > > > > log:formatChars/2 +> > > > > builtin:number_chars/2 +> > > builtin:write/1 +> builtin:memberchk/2 +> screenUtility:switchToSetInstance/2 + +----- Going Down tclScreen:screenInit/0 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +screenTclGui.pro 104:114 + +tclScreen:screenInit/0 uses: +> tclScreen:formatValueList/5 +> > builtin:atom_concat/3 +> > tclScreen:atomics_concat/3 +> > > tclScreen:_atomic_to_atom/2 +> > > > builtin:atom/1 +> > > > builtin:atom_codes/2 +> > > > builtin:number/1 +> > > > builtin:number_codes/2 +> > > builtin:atom_concat/3 +> > > tclScreen:atomics_concat/3 ***** looping ***** +> tclScreen:launchProcedure/2 +> > tclScreen:handleProcedure/2 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > > builtin:throw/1 +> > undefined:tcl_eval/3 +> tclScreen:screenArguments/1 +> tclScreen:tclInterpreter/1 + +----- Going Down tclScreen:loadFileRecords/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +screenTclGui.pro 114:131 + +tclScreen:loadFileRecords/1 uses: +> tclScreen:fileFilter/2 +> > builtin:atom_codes/2 +> > tclScreen:fileFilter/3 +> > > builtin: = /2 +> > > lists:append/2 +> > > tclScreen:fileFilter/3 ***** looping ***** +> > > tclScreen:fileFilterClause/3 +> > > > builtin: = /2 +> > > > lists:append/2 +> > > > builtin:atom_codes/2 +> > > > tclScreen:fileOption/3 +> > > > > builtin: = /2 +> > > > > builtin:atom_codes/2 +> > builtin:number/1 +> > builtin:number_codes/2 +> tclScreen:filterArgs/3 +> > builtin: = /2 +> > builtin:(\+)/1 +> > tclScreen:filterArgs/3 ***** looping ***** +> > builtin:var/1 +> builtin:findall/3 +> tclScreen:formatValueList/5 +> > builtin:atom_concat/3 +> > tclScreen:atomics_concat/3 +> > > tclScreen:_atomic_to_atom/2 +> > > > builtin:atom/1 +> > > > builtin:atom_codes/2 +> > > > builtin:number/1 +> > > > builtin:number_codes/2 +> > > builtin:atom_concat/3 +> > > tclScreen:atomics_concat/3 ***** looping ***** +> tclScreen:keyFilter/2 +> > builtin:atom_codes/2 +> > tclScreen:keyFilter/3 +> > > builtin: = /2 +> > > lists:append/2 +> > > tclScreen:keyFilter/3 ***** looping ***** +> > > tclScreen:keyOptionList/3 +> > > > lists:append/2 +> > > > tclScreen:keyOptionClause/3 +> > > > > builtin: = /2 +> > > > > lists:append/2 +> > > > > builtin:atom_codes/2 +> > > > > tclScreen:keyOption/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom_codes/2 +> > > > tclScreen:keyOptionList/3 ***** looping ***** +> > builtin:number/1 +> > builtin:number_codes/2 +> tclScreen:launchProcedure/2 +> > tclScreen:handleProcedure/2 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > > builtin:throw/1 +> > undefined:tcl_eval/3 +> builtin:length/2 +> tclScreen:screenArguments/1 +> tclScreen:tclInterpreter/1 +> tclScreen:unnestedList/3 +> > builtin: = /2 +> > builtin:length/2 +> > tclScreen:unnestedList/3 ***** looping ***** +> assert-tclScreen:fileRecords/1 + +----- Going Down tclScreen:setFileRecords/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +screenTclGui.pro 238:250 + +tclScreen:setFileRecords/3 uses: +> tclScreen:fileRecords/1 +> tclScreen:formatValueList/5 +> > builtin:atom_concat/3 +> > tclScreen:atomics_concat/3 +> > > tclScreen:_atomic_to_atom/2 +> > > > builtin:atom/1 +> > > > builtin:atom_codes/2 +> > > > builtin:number/1 +> > > > builtin:number_codes/2 +> > > builtin:atom_concat/3 +> > > tclScreen:atomics_concat/3 ***** looping ***** +> tclScreen:launchProcedure/2 +> > tclScreen:handleProcedure/2 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > > builtin:throw/1 +> > undefined:tcl_eval/3 +> builtin:length/2 +> lists:sublist/5 +> tclScreen:tclInterpreter/1 + +----- Going Down tclScreen:validRecord/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +screenTclGui.pro 250:262 + +tclScreen:validRecord/4 uses: +> lists:append/2 +> tclScreen:formatRecordKey/2 +> > builtin: = /2 +> > builtin:atom_codes/2 +> > tclScreen:list_codes/3 +> > > builtin: = /2 +> > > builtin:length/2 +> > > tclScreen:listElements/3 +> > > > builtin: = /2 +> > > > builtin: > /2 +> > > > builtin:length/2 +> > > > tclScreen:listElement/3 +> > > > > builtin:atom/1 +> > > > > tclScreen:atomListElement/3 +> > > > > > builtin: = /2 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:phrase/3 +> > > > > builtin:atom_codes/2 +> > > > > builtin:number/1 +> > > > > builtin:number_codes/2 +> > > > > builtin:phrase/3 +> > > > tclScreen:listElements/3 ***** looping ***** +> > > > tclScreen:list_codes/3 ***** looping ***** +> > tclScreen:tclEscapedArgs/3 +> > > builtin: = /2 +> > > builtin:atom_codes/2 +> > > tclScreen:tclEscapedArg/3 +> > > > builtin: = /2 +> > > > builtin: == /2 +> > > > tclScreen:tclEscapedArg/3 ***** looping ***** +> > > tclScreen:tclEscapedArgs/3 ***** looping ***** +> builtin:length/2 +> builtin:memberchk/2 +> tclScreen:verifyKey/2 +> > builtin: = /2 +> > builtin: == /2 +> > builtin:length/2 +> > tclScreen:unnestedList/3 +> > > builtin: = /2 +> > > builtin:length/2 +> > > tclScreen:unnestedList/3 ***** looping ***** +> > tclScreen:validKeys/4 +> > > builtin: = /2 +> > > builtin: == /2 +> > > tclScreen:atom_var/2 +> > > > builtin: = /2 +> > > > builtin:atom/1 +> > > > builtin:atom_codes/2 +> > > > builtin:number/1 +> > > > builtin:number_codes/2 +> > > builtin:memberchk/2 +> > > tclScreen:validKeys/4 ***** looping ***** +> user:fileRecord/3 + +----- Going Down tclScreen:setVars/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +screenTclGui.pro 435:466 + +tclScreen:setVars/1 uses: +> builtin: = /2 +> builtin:abolish/1 +> tclScreen:env/1 +> screenUtility:filterListOfVars/3 +> > screenUtility:filterListOfVars/3 ***** looping ***** +> screenUtility:getTrueFalseEditableListFromTCLFile/2 +> > builtin:close/1 +> > screenUtility:getEditLine/2 +> > > builtin: = /2 +> > > lists:append/2 +> > > screenUtility:getEditLine/2 ***** looping ***** +> > > builtin:read_line/2 +> > > builtin:throw/1 +> > screenUtility:getTrueFalseList/3 +> > > builtin: = /2 +> > > screenUtility:bracketed/3 +> > > > builtin: = /2 +> > > > screenUtility:false/2 +> > > > > builtin: = /2 +> > > > screenUtility:true/2 +> > > > > builtin: = /2 +> > > > screenUtility:whitespace/2 +> > > > > builtin: = /2 +> > > > > screenUtility:whitespace/2 ***** looping ***** +> > > screenUtility:getTrueFalseList/3 ***** looping ***** +> > > screenUtility:whitespaceDelimited/3 +> > > > screenUtility:false/2 +> > > > > builtin: = /2 +> > > > screenUtility:true/2 +> > > > > builtin: = /2 +> > > > screenUtility:whitespace/2 +> > > > > builtin: = /2 +> > > > > screenUtility:whitespace/2 ***** looping ***** +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > builtin:open/3 +> builtin:ground/1 +> builtin:length/2 +> tclScreen:screenFullPath/1 +> tclScreen:setVariables/4 +> > tclScreen:setVariable/4 +> > > semantics:atomOrNumber/2 +> > > > builtin:atom_codes/2 +> > > > builtin:name/2 +> > > semantics:setVar/4 +> > > > builtin: = /2 +> > > > builtin:(\+)/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > lists:selectchk/4 +> > > > builtin:throw/1 +> > tclScreen:setVariables/4 ***** looping ***** +> solsticeUtility:splitAtom/3 +> > builtin: = /2 +> > builtin:atom_codes/2 +> > solsticeUtility:characterCodesToAtoms/2 +> > > builtin:(\+)/1 +> > > builtin:atom_codes/2 +> > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > lists:is_list/1 +> > solsticeUtility:splitCharacterCodes/3 +> > > lists:append/2 +> > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> builtin:throw/1 +> tclScreen:variables/1 +> assert-tclScreen:newEnv/1 + +----- Going Down semantics:keyIsValid/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +semantics.pro 911:917 + +semantics:keyIsValid/4 uses: +> semantics:evalExpression/4 +> > builtin: = /2 +> > builtin: =.. /2 +> > builtin:atom/1 +> > semantics:evalExpression/4 ***** looping ***** +> > builtin:float/1 +> > semantics:getReturn/2 +> > > builtin: = /2 +> > > builtin:member/2 +> > semantics:getVar/3 +> > > builtin: = /2 +> > > builtin:atom/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > > builtin:memberchk/2 +> > > builtin:number/1 +> > > builtin:throw/1 +> > builtin:integer/1 +> > builtin:is/2 +> > lists:is_list/1 +> > builtin:member/2 +> semantics:getPosition/3 +> > builtin:(\+)/1 +> > builtin:do/2 +> > lists:is_list/1 +> user:fileRecord/3 +> user:representation/2 + +----- Going Down semantics:notValid/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +semantics.pro 917:924 + +semantics:notValid/5 uses: +> builtin:(\+)/1 +> semantics:evalExpression/4 +> > builtin: = /2 +> > builtin: =.. /2 +> > builtin:atom/1 +> > semantics:evalExpression/4 ***** looping ***** +> > builtin:float/1 +> > semantics:getReturn/2 +> > > builtin: = /2 +> > > builtin:member/2 +> > semantics:getVar/3 +> > > builtin: = /2 +> > > builtin:atom/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > > builtin:memberchk/2 +> > > builtin:number/1 +> > > builtin:throw/1 +> > builtin:integer/1 +> > builtin:is/2 +> > lists:is_list/1 +> > builtin:member/2 +> semantics:getPosition/3 +> > builtin:(\+)/1 +> > builtin:do/2 +> > lists:is_list/1 +> user:fileRecord/3 +> user:representation/2 + +----- Going Down semantics:scanGlobalOuts/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +semantics.pro 1093:1095 + +semantics:scanGlobalOuts/3 uses: +> builtin: = /2 +> builtin:if/3 + +----- Going Down semantics:initialNode/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +semantics.pro 1198:1204 + +semantics:initialNode/3 uses: +> builtin:(\+)/1 +> builtin:member/2 + +----- Going Down semantics:getColumnValues/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +semantics.pro 1333:1340 + +semantics:getColumnValues/3 uses: +> semantics:checkColumns/2 +> > builtin: < /2 +> > builtin: =< /2 +> > builtin: > /2 +> > builtin: >= /2 +> > semantics:checkColumns/2 ***** looping ***** +> > builtin:member/2 +> user:dbRow/2 + +----- Going Down semantics:getTableName/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/Semantics/semantics.pro +semantics.pro 1394:1401 + +semantics:getTableName/2 uses: +> builtin:atom_codes/2 +> semantics:extractTableName/2 +> > semantics:extractTableName/2 ***** looping ***** +> lists:reverse/2 + +----- Going Down dfmStep:dfmStep/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +DfmStep.pro 14:31 + +dfmStep:dfmStep/4 uses: +> builtin: = /2 +> dfmStep:dfmNodeStep/4 +> > builtin: = /2 +> > lists:append/2 +> > semantics:executeNode/5 +> > > builtin: = /2 +> > > semantics:execute/5 +> > > > builtin: = /2 +> > > > builtin: =< /2 +> > > > builtin: > /2 +> > > > builtin:(\+)/1 +> > > > builtin:abolish/1 +> > > > lists:append/2 +> > > > builtin:append/3 +> > > > semantics:assignReturnedStruct/4 +> > > > > semantics:assignReturnedStruct/4 ***** looping ***** +> > > > > semantics:setVar/4 +> > > > > > builtin: = /2 +> > > > > > builtin:(\+)/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > > > semantics:assignStruct/4 +> > > > > semantics:assignStruct/4 ***** looping ***** +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > > semantics:setVar/4 +> > > > > > builtin: = /2 +> > > > > > builtin:(\+)/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > > > semantics:assignValues/5 +> > > > > semantics:assignValues/5 ***** looping ***** +> > > > > semantics:concatInput/3 +> > > > > > builtin: = /2 +> > > > > > solsticeUtility:atom_concat/2 +> > > > > > > lists:append/2 +> > > > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > > > builtin:atom_codes/2 +> > > > > > > > builtin:ground/1 +> > > > > > semantics:concatInput/3 ***** looping ***** +> > > > > semantics:setVar/4 +> > > > > > builtin: = /2 +> > > > > > builtin:(\+)/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > > > builtin:atom/1 +> > > > semantics:atomOrNumber/2 +> > > > > builtin:atom_codes/2 +> > > > > builtin:name/2 +> > > > builtin:atom_codes/2 +> > > > builtin:atom_concat/3 +> > > > semantics:catchUserCancellation/1 +> > > > > builtin:throw/1 +> > > > semantics:changeFile/3 +> > > > > builtin:retractall/1 +> > > > > assert-user:fileRecord/3 +> > > > semantics:checkColumns/2 +> > > > > builtin: < /2 +> > > > > builtin: =< /2 +> > > > > builtin: > /2 +> > > > > builtin: >= /2 +> > > > > semantics:checkColumns/2 ***** looping ***** +> > > > > builtin:member/2 +> > > > solsticeUtility:computeDateAdd/4 +> > > > > builtin: < /2 +> > > > > builtin: = /2 +> > > > > builtin: =< /2 +> > > > > builtin: > /2 +> > > > > solsticeUtility:dayCalc/5 +> > > > > > builtin: < /2 +> > > > > > builtin: = /2 +> > > > > > builtin: =< /2 +> > > > > > builtin: > /2 +> > > > > > solsticeUtility:dayCalc/5 ***** looping ***** +> > > > > > solsticeUtility:daysInMonth/3 +> > > > > > > builtin: = /2 +> > > > > > > builtin:is/2 +> > > > > > > builtin:memberchk/2 +> > > > > > builtin:is/2 +> > > > > > builtin:var/1 +> > > > > solsticeUtility:daysInMonth/3 +> > > > > > builtin: = /2 +> > > > > > builtin:is/2 +> > > > > > builtin:memberchk/2 +> > > > > builtin:is/2 +> > > > solsticeUtility:computeDateDiff/4 +> > > > > solsticeUtility:computeDateDiff/4 ***** looping ***** +> > > > > solsticeUtility:dateComp/3 +> > > > > > builtin: < /2 +> > > > > > builtin: = /2 +> > > > > solsticeUtility:dayCalc/5 +> > > > > > builtin: < /2 +> > > > > > builtin: = /2 +> > > > > > builtin: =< /2 +> > > > > > builtin: > /2 +> > > > > > solsticeUtility:dayCalc/5 ***** looping ***** +> > > > > > solsticeUtility:daysInMonth/3 +> > > > > > > builtin: = /2 +> > > > > > > builtin:is/2 +> > > > > > > builtin:memberchk/2 +> > > > > > builtin:is/2 +> > > > > > builtin:var/1 +> > > > > builtin:is/2 +> > > > semantics:concatInput/3 +> > > > > builtin: = /2 +> > > > > solsticeUtility:atom_concat/2 +> > > > > > lists:append/2 +> > > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:ground/1 +> > > > > semantics:concatInput/3 ***** looping ***** +> > > > semantics:createInitialStep/3 +> > > > > builtin: = /2 +> > > > undefined:datime/1 +> > > > solsticeUtility:daysInMonth/3 +> > > > > builtin: = /2 +> > > > > builtin:is/2 +> > > > > builtin:memberchk/2 +> > > > semantics:deleteFile/2 +> > > > > builtin:retractall/1 +> > > > > user:fileRecord/3 +> > > > builtin:do/2 +> > > > semantics:evalConditional/4 +> > > > > builtin: = /2 +> > > > > builtin: =.. /2 +> > > > > semantics:evalConditional/4 ***** looping ***** +> > > > > semantics:evalExpression/4 +> > > > > > builtin: = /2 +> > > > > > builtin: =.. /2 +> > > > > > builtin:atom/1 +> > > > > > semantics:evalExpression/4 ***** looping ***** +> > > > > > builtin:float/1 +> > > > > > semantics:getReturn/2 +> > > > > > > builtin: = /2 +> > > > > > > builtin:member/2 +> > > > > > semantics:getVar/3 +> > > > > > > builtin: = /2 +> > > > > > > builtin:atom/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > builtin:memberchk/2 +> > > > > > > builtin:number/1 +> > > > > > > builtin:throw/1 +> > > > > > builtin:integer/1 +> > > > > > builtin:is/2 +> > > > > > lists:is_list/1 +> > > > > > builtin:member/2 +> > > > > builtin:member/2 +> > > > > builtin:number/1 +> > > > semantics:evalExpression/4 +> > > > > builtin: = /2 +> > > > > builtin: =.. /2 +> > > > > builtin:atom/1 +> > > > > semantics:evalExpression/4 ***** looping ***** +> > > > > builtin:float/1 +> > > > > semantics:getReturn/2 +> > > > > > builtin: = /2 +> > > > > > builtin:member/2 +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > > builtin:integer/1 +> > > > > builtin:is/2 +> > > > > lists:is_list/1 +> > > > > builtin:member/2 +> > > > semantics:evalStructure/3 +> > > > > semantics:evalStructure/3 ***** looping ***** +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > semantics:fileExists/1 +> > > > > user:fileRecord/3 +> > > > builtin:functor/3 +> > > > sessionManager:getCurrentProject/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > semantics:getGTEfileRecord/3 +> > > > > builtin:append/3 +> > > > > builtin:findall/3 +> > > > > builtin:is/2 +> > > > > lists:last/2 +> > > > > lists:nth1/3 +> > > > > builtin:sort/2 +> > > > > user:fileRecord/3 +> > > > semantics:getNextRecord/3 +> > > > > builtin: = /2 +> > > > > builtin:(\+)/1 +> > > > > builtin:findall/3 +> > > > > builtin:is/2 +> > > > > lists:last/2 +> > > > > lists:nth1/3 +> > > > > builtin:retractall/1 +> > > > > undefined:samsort/2 +> > > > > user:fileRecord/3 +> > > > semantics:getPosition/3 +> > > > > builtin:(\+)/1 +> > > > > builtin:do/2 +> > > > > lists:is_list/1 +> > > > semantics:getQueryValues/3 +> > > > > semantics:getQueryValues/3 ***** looping ***** +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > semantics:getRecord/3 +> > > > > builtin: = /2 +> > > > > builtin:findall/3 +> > > > > builtin:memberchk/2 +> > > > > undefined:samsort/2 +> > > > sessionManager:getScreensPath/2 +> > > > > builtin:,/2 +> > > > > sessionManager:getSessionNamespace/1 +> > > > semantics:getVar/3 +> > > > > builtin: = /2 +> > > > > builtin:atom/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > builtin:memberchk/2 +> > > > > builtin:number/1 +> > > > > builtin:throw/1 +> > > > semantics:groundArgs/4 +> > > > > semantics:atomize/2 +> > > > > > builtin:atom/1 +> > > > > > builtin:atom_codes/2 +> > > > > > lists:is_list/1 +> > > > > > builtin:number/1 +> > > > > > builtin:number_codes/2 +> > > > > semantics:evalExpression/4 +> > > > > > builtin: = /2 +> > > > > > builtin: =.. /2 +> > > > > > builtin:atom/1 +> > > > > > semantics:evalExpression/4 ***** looping ***** +> > > > > > builtin:float/1 +> > > > > > semantics:getReturn/2 +> > > > > > > builtin: = /2 +> > > > > > > builtin:member/2 +> > > > > > semantics:getVar/3 +> > > > > > > builtin: = /2 +> > > > > > > builtin:atom/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > builtin:memberchk/2 +> > > > > > > builtin:number/1 +> > > > > > > builtin:throw/1 +> > > > > > builtin:integer/1 +> > > > > > builtin:is/2 +> > > > > > lists:is_list/1 +> > > > > > builtin:member/2 +> > > > builtin:if/3 +> > > > builtin:is/2 +> > > > lists:is_list/1 +> > > > builtin:length/2 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > builtin:nl/0 +> > > > undefined:now/1 +> > > > builtin:number_codes/2 +> > > > solsticeUtility:numeric/1 +> > > > > builtin: < /2 +> > > > > builtin: > /2 +> > > > > solsticeUtility:numeric/1 ***** looping ***** +> > > > semantics:partialKey/2 +> > > > > builtin:atom/1 +> > > > > builtin:do/2 +> > > > > builtin:number/1 +> > > > semantics:readRecordInfo/5 +> > > > > builtin:(\+)/1 +> > > > > lists:is_list/1 +> > > > > lists:same_length/2 +> > > > > semantics:setVar/4 +> > > > > > builtin: = /2 +> > > > > > builtin:(\+)/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > > > > semantics:setVariables/4 +> > > > > > builtin:(\+)/1 +> > > > > > semantics:setVar/4 +> > > > > > > builtin: = /2 +> > > > > > > builtin:(\+)/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > lists:selectchk/4 +> > > > > > > builtin:throw/1 +> > > > > > semantics:setVariables/4 ***** looping ***** +> > > > builtin:retractall/1 +> > > > semantics:runCursor/4 +> > > > > builtin:findall/3 +> > > > semantics:runSelect/4 +> > > > > semantics:applyJoinQueries/3 +> > > > > > lists:append/2 +> > > > > > semantics:checkJoins/2 +> > > > > > > builtin: \== /2 +> > > > > > > semantics:checkJoins/2 ***** looping ***** +> > > > > > > builtin:member/2 +> > > > > semantics:buildQueries/4 +> > > > > > semantics:buildJoinQueries/3 +> > > > > > > lists:append/2 +> > > > > > > builtin:findall/3 +> > > > > > semantics:buildWhereQueries/3 +> > > > > > > builtin:findall/3 +> > > > > builtin:do/2 +> > > > > semantics:runWhereQueries/2 +> > > > > > semantics:checkColumns/2 +> > > > > > > builtin: < /2 +> > > > > > > builtin: =< /2 +> > > > > > > builtin: > /2 +> > > > > > > builtin: >= /2 +> > > > > > > semantics:checkColumns/2 ***** looping ***** +> > > > > > > builtin:member/2 +> > > > > > semantics:runWhereQueries/2 ***** looping ***** +> > > > > > user:dbRow/2 +> > > > semantics:runUpdate/3 +> > > > > builtin:member/2 +> > > > > semantics:runUpdate/3 ***** looping ***** +> > > > semantics:setVar/4 +> > > > > builtin: = /2 +> > > > > builtin:(\+)/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > lists:selectchk/4 +> > > > > builtin:throw/1 +> > > > semantics:setVariables/4 +> > > > > builtin:(\+)/1 +> > > > > semantics:setVar/4 +> > > > > > builtin: = /2 +> > > > > > builtin:(\+)/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > > > > semantics:setVariables/4 ***** looping ***** +> > > > solsticeUtility:splitAtom/3 +> > > > > builtin: = /2 +> > > > > builtin:atom_codes/2 +> > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > builtin:(\+)/1 +> > > > > > builtin:atom_codes/2 +> > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > lists:is_list/1 +> > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > lists:append/2 +> > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > solsticeUtility:structToList/2 +> > > > > solsticeUtility:structToList/2 ***** looping ***** +> > > > > builtin:var/1 +> > > > tclGui:tclQueryBox/2 +> > > > > builtin: = /2 +> > > > > lists:append/2 +> > > > > builtin:atom_codes/2 +> > > > > undefined:tcl_delete/1 +> > > > > undefined:tcl_eval/3 +> > > > > undefined:tk_main_loop/0 +> > > > > undefined:tk_new/2 +> > > > tclScreen:tclScreen/6 +> > > > > builtin:abolish/1 +> > > > > lists:append/2 +> > > > > builtin:atom_codes/2 +> > > > > builtin:atom_concat/3 +> > > > > lists:head/2 +> > > > > lists:last/2 +> > > > > tclScreen:launchMainLoop/1 +> > > > > > tclScreen:handleMainLoop/1 +> > > > > > > builtin:throw/1 +> > > > > > undefined:tk_main_loop/0 +> > > > > tclScreen:launchScript/2 +> > > > > > tclScreen:handleScriptLaunch/1 +> > > > > > > builtin: = /2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:throw/1 +> > > > > > undefined:tcl_eval/3 +> > > > > tclScreen:newEnv/1 +> > > > > builtin:retractall/1 +> > > > > solsticeUtility:splitAtom/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom_codes/2 +> > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > builtin:(\+)/1 +> > > > > > > builtin:atom_codes/2 +> > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > lists:is_list/1 +> > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > lists:append/2 +> > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > tclScreen:tclSourceCommand/2 +> > > > > > lists:append/2 +> > > > > > tclScreen:atomics_concat/2 +> > > > > > > tclScreen:atomics_concat/3 +> > > > > > > > tclScreen:_atomic_to_atom/2 +> > > > > > > > > builtin:atom/1 +> > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:number_codes/2 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > tclScreen:atomics_concat/3 ***** looping ***** +> > > > > undefined:tcl_delete/1 +> > > > > undefined:tk_main_loop/0 +> > > > > undefined:tk_new/2 +> > > > > tclScreen:varListToValues/3 +> > > > > > builtin:(\+)/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:var/1 +> > > > > > tclScreen:varListToValues/3 ***** looping ***** +> > > > > fileInformation:filePath/1 +> > > > > assert-tclScreen:env/1 +> > > > > assert-tclScreen:newEnv/1 +> > > > > assert-tclScreen:screenArguments/1 +> > > > > assert-tclScreen:screenFullPath/1 +> > > > > assert-tclScreen:tclInterpreter/1 +> > > > > assert-tclScreen:variables/1 +> > > > builtin:throw/1 +> > > > builtin:write/1 +> > > > semantics:writeRecordInfo/3 +> > > > > builtin:(\+)/1 +> > > > > builtin:do/2 +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > > lists:is_list/1 +> > > > semantics:writeStruct/2 +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > > builtin:nl/0 +> > > > > builtin:write/1 +> > > > > semantics:writeStruct/2 ***** looping ***** +> > > > user:currentIndex/1 +> > > > user:cursor/3 +> > > > user:cursorQuery/1 +> > > > user:dbRow/2 +> > > > user:fileRecord/3 +> > > > user:representation/2 +> > > > assert-user:currentIndex/1 +> > > > assert-user:cursorQuery/1 +> > > > assert-user:dbRow/2 +> > > > assert-user:nextRecord/2 +> > > > retract-user:dbRow/2 +> > > builtin:member/2 +> > > user:representation/2 +> > dfmStep:findDependencies/4 +> > > dfmStep:createInitialStep/3 +> > > > builtin: = /2 +> > > builtin:findall/3 +> > > user:representation/2 +> > dfmStep:findFunctions/3 +> > > lists:append/2 +> > > builtin:findall/3 +> > > user:representation/2 +> > semantics:resolveNode/4 +> > > builtin: = /2 +> > > builtin:member/2 +> > > semantics:resolve/4 +> > > > builtin: = /2 +> > > > semantics:evalConditional/4 +> > > > > builtin: = /2 +> > > > > builtin: =.. /2 +> > > > > semantics:evalConditional/4 ***** looping ***** +> > > > > semantics:evalExpression/4 +> > > > > > builtin: = /2 +> > > > > > builtin: =.. /2 +> > > > > > builtin:atom/1 +> > > > > > semantics:evalExpression/4 ***** looping ***** +> > > > > > builtin:float/1 +> > > > > > semantics:getReturn/2 +> > > > > > > builtin: = /2 +> > > > > > > builtin:member/2 +> > > > > > semantics:getVar/3 +> > > > > > > builtin: = /2 +> > > > > > > builtin:atom/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > builtin:memberchk/2 +> > > > > > > builtin:number/1 +> > > > > > > builtin:throw/1 +> > > > > > builtin:integer/1 +> > > > > > builtin:is/2 +> > > > > > lists:is_list/1 +> > > > > > builtin:member/2 +> > > > > builtin:member/2 +> > > > > builtin:number/1 +> > > > semantics:executePhiFunction/4 +> > > > > builtin: = /2 +> > > > > semantics:checkVar/2 +> > > > > > builtin:memberchk/2 +> > > > > semantics:executePhiFunction/4 ***** looping ***** +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > > semantics:setVar/4 +> > > > > > builtin: = /2 +> > > > > > builtin:(\+)/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > user:representation/2 +> semantics:functionStep/4 +> > builtin: = /2 +> > semantics:findInitialNodes/3 +> > > builtin: = /2 +> > > semantics:createInitialStep/3 +> > > > builtin: = /2 +> > > builtin:findall/3 +> > > builtin:member/2 +> > > user:representation/2 +> > preProcess:loadModule/1 +> > > builtin:atom_concat/3 +> > > preProcess:convertToRepresentation/2 +> > > > builtin:close/1 +> > > > preProcess:createRepresentation/3 +> > > > > builtin: = /2 +> > > > > preProcess:createRepresentation/3 ***** looping ***** +> > > > > builtin:read/2 +> > > > builtin:open/3 +> > > builtin:ground/1 +> > > builtin:if/3 +> > > builtin:member/2 +> > > fileInformation:representationsPath/1 +> > > user:representation/2 +> > > assert-user:representation/2 +> > semantics:mapArguments/5 +> > > builtin: = /2 +> > > semantics:getVar/3 +> > > > builtin: = /2 +> > > > builtin:atom/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > builtin:memberchk/2 +> > > > builtin:number/1 +> > > > builtin:throw/1 +> > > semantics:mapArguments/5 ***** looping ***** +> > > semantics:setVar/4 +> > > > builtin: = /2 +> > > > builtin:(\+)/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > lists:selectchk/4 +> > > > builtin:throw/1 +> > > builtin:throw/1 +> > semantics:mapGlobals/5 +> > > builtin: = /2 +> > > semantics:checkVar/2 +> > > > builtin:memberchk/2 +> > > semantics:getVar/3 +> > > > builtin: = /2 +> > > > builtin:atom/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > builtin:memberchk/2 +> > > > builtin:number/1 +> > > > builtin:throw/1 +> > > semantics:mapGlobals/5 ***** looping ***** +> > > semantics:setVar/4 +> > > > builtin: = /2 +> > > > builtin:(\+)/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > lists:selectchk/4 +> > > > builtin:throw/1 +> > > builtin:throw/1 +> > semantics:mapReturn/5 +> > > builtin: = /2 +> > > semantics:checkVar/2 +> > > > builtin:memberchk/2 +> > > semantics:getVar/3 +> > > > builtin: = /2 +> > > > builtin:atom/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > builtin:memberchk/2 +> > > > builtin:number/1 +> > > > builtin:throw/1 +> > > builtin:member/2 +> > > semantics:setVar/4 +> > > > builtin: = /2 +> > > > builtin:(\+)/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > lists:selectchk/4 +> > > > builtin:throw/1 +> > builtin:member/2 +> > user:representation/2 + +----- Going Down dfmStep:findAFunction/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +DfmStep.pro 64:79 + +dfmStep:findAFunction/3 uses: +> builtin: = /2 +> builtin:(\+)/1 +> builtin:member/2 +> solsticeUtility:subtermMember/2 +> > builtin: =.. /2 +> > builtin:member/2 +> > builtin:nonvar/1 +> > solsticeUtility:subtermMember/2 ***** looping ***** +> user:representation/2 + +----- Going Down dfmStep:necessary/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/DFM/DfmStep.pro +DfmStep.pro 95:101 + +dfmStep:necessary/4 uses: +> builtin:(\+)/1 +> builtin: \= /2 +> builtin:member/2 + +----- Going Down cfmStep:cfmStep/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/CFM/CfmStep.pro +CfmStep.pro 14:30 + +cfmStep:cfmStep/4 uses: +> builtin: = /2 +> cfmStep:cfmNodeStep/4 +> > builtin: = /2 +> > semantics:executeNode/5 +> > > builtin: = /2 +> > > semantics:execute/5 +> > > > builtin: = /2 +> > > > builtin: =< /2 +> > > > builtin: > /2 +> > > > builtin:(\+)/1 +> > > > builtin:abolish/1 +> > > > lists:append/2 +> > > > builtin:append/3 +> > > > semantics:assignReturnedStruct/4 +> > > > > semantics:assignReturnedStruct/4 ***** looping ***** +> > > > > semantics:setVar/4 +> > > > > > builtin: = /2 +> > > > > > builtin:(\+)/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > > > semantics:assignStruct/4 +> > > > > semantics:assignStruct/4 ***** looping ***** +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > > semantics:setVar/4 +> > > > > > builtin: = /2 +> > > > > > builtin:(\+)/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > > > semantics:assignValues/5 +> > > > > semantics:assignValues/5 ***** looping ***** +> > > > > semantics:concatInput/3 +> > > > > > builtin: = /2 +> > > > > > solsticeUtility:atom_concat/2 +> > > > > > > lists:append/2 +> > > > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > > > builtin:atom_codes/2 +> > > > > > > > builtin:ground/1 +> > > > > > semantics:concatInput/3 ***** looping ***** +> > > > > semantics:setVar/4 +> > > > > > builtin: = /2 +> > > > > > builtin:(\+)/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > > > builtin:atom/1 +> > > > semantics:atomOrNumber/2 +> > > > > builtin:atom_codes/2 +> > > > > builtin:name/2 +> > > > builtin:atom_codes/2 +> > > > builtin:atom_concat/3 +> > > > semantics:catchUserCancellation/1 +> > > > > builtin:throw/1 +> > > > semantics:changeFile/3 +> > > > > builtin:retractall/1 +> > > > > assert-user:fileRecord/3 +> > > > semantics:checkColumns/2 +> > > > > builtin: < /2 +> > > > > builtin: =< /2 +> > > > > builtin: > /2 +> > > > > builtin: >= /2 +> > > > > semantics:checkColumns/2 ***** looping ***** +> > > > > builtin:member/2 +> > > > solsticeUtility:computeDateAdd/4 +> > > > > builtin: < /2 +> > > > > builtin: = /2 +> > > > > builtin: =< /2 +> > > > > builtin: > /2 +> > > > > solsticeUtility:dayCalc/5 +> > > > > > builtin: < /2 +> > > > > > builtin: = /2 +> > > > > > builtin: =< /2 +> > > > > > builtin: > /2 +> > > > > > solsticeUtility:dayCalc/5 ***** looping ***** +> > > > > > solsticeUtility:daysInMonth/3 +> > > > > > > builtin: = /2 +> > > > > > > builtin:is/2 +> > > > > > > builtin:memberchk/2 +> > > > > > builtin:is/2 +> > > > > > builtin:var/1 +> > > > > solsticeUtility:daysInMonth/3 +> > > > > > builtin: = /2 +> > > > > > builtin:is/2 +> > > > > > builtin:memberchk/2 +> > > > > builtin:is/2 +> > > > solsticeUtility:computeDateDiff/4 +> > > > > solsticeUtility:computeDateDiff/4 ***** looping ***** +> > > > > solsticeUtility:dateComp/3 +> > > > > > builtin: < /2 +> > > > > > builtin: = /2 +> > > > > solsticeUtility:dayCalc/5 +> > > > > > builtin: < /2 +> > > > > > builtin: = /2 +> > > > > > builtin: =< /2 +> > > > > > builtin: > /2 +> > > > > > solsticeUtility:dayCalc/5 ***** looping ***** +> > > > > > solsticeUtility:daysInMonth/3 +> > > > > > > builtin: = /2 +> > > > > > > builtin:is/2 +> > > > > > > builtin:memberchk/2 +> > > > > > builtin:is/2 +> > > > > > builtin:var/1 +> > > > > builtin:is/2 +> > > > semantics:concatInput/3 +> > > > > builtin: = /2 +> > > > > solsticeUtility:atom_concat/2 +> > > > > > lists:append/2 +> > > > > > solsticeUtility:guarded_atom_codes/2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:ground/1 +> > > > > semantics:concatInput/3 ***** looping ***** +> > > > semantics:createInitialStep/3 +> > > > > builtin: = /2 +> > > > undefined:datime/1 +> > > > solsticeUtility:daysInMonth/3 +> > > > > builtin: = /2 +> > > > > builtin:is/2 +> > > > > builtin:memberchk/2 +> > > > semantics:deleteFile/2 +> > > > > builtin:retractall/1 +> > > > > user:fileRecord/3 +> > > > builtin:do/2 +> > > > semantics:evalConditional/4 +> > > > > builtin: = /2 +> > > > > builtin: =.. /2 +> > > > > semantics:evalConditional/4 ***** looping ***** +> > > > > semantics:evalExpression/4 +> > > > > > builtin: = /2 +> > > > > > builtin: =.. /2 +> > > > > > builtin:atom/1 +> > > > > > semantics:evalExpression/4 ***** looping ***** +> > > > > > builtin:float/1 +> > > > > > semantics:getReturn/2 +> > > > > > > builtin: = /2 +> > > > > > > builtin:member/2 +> > > > > > semantics:getVar/3 +> > > > > > > builtin: = /2 +> > > > > > > builtin:atom/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > builtin:memberchk/2 +> > > > > > > builtin:number/1 +> > > > > > > builtin:throw/1 +> > > > > > builtin:integer/1 +> > > > > > builtin:is/2 +> > > > > > lists:is_list/1 +> > > > > > builtin:member/2 +> > > > > builtin:member/2 +> > > > > builtin:number/1 +> > > > semantics:evalExpression/4 +> > > > > builtin: = /2 +> > > > > builtin: =.. /2 +> > > > > builtin:atom/1 +> > > > > semantics:evalExpression/4 ***** looping ***** +> > > > > builtin:float/1 +> > > > > semantics:getReturn/2 +> > > > > > builtin: = /2 +> > > > > > builtin:member/2 +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > > builtin:integer/1 +> > > > > builtin:is/2 +> > > > > lists:is_list/1 +> > > > > builtin:member/2 +> > > > semantics:evalStructure/3 +> > > > > semantics:evalStructure/3 ***** looping ***** +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > semantics:fileExists/1 +> > > > > user:fileRecord/3 +> > > > builtin:functor/3 +> > > > sessionManager:getCurrentProject/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > semantics:getGTEfileRecord/3 +> > > > > builtin:append/3 +> > > > > builtin:findall/3 +> > > > > builtin:is/2 +> > > > > lists:last/2 +> > > > > lists:nth1/3 +> > > > > builtin:sort/2 +> > > > > user:fileRecord/3 +> > > > semantics:getNextRecord/3 +> > > > > builtin: = /2 +> > > > > builtin:(\+)/1 +> > > > > builtin:findall/3 +> > > > > builtin:is/2 +> > > > > lists:last/2 +> > > > > lists:nth1/3 +> > > > > builtin:retractall/1 +> > > > > undefined:samsort/2 +> > > > > user:fileRecord/3 +> > > > semantics:getPosition/3 +> > > > > builtin:(\+)/1 +> > > > > builtin:do/2 +> > > > > lists:is_list/1 +> > > > semantics:getQueryValues/3 +> > > > > semantics:getQueryValues/3 ***** looping ***** +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > semantics:getRecord/3 +> > > > > builtin: = /2 +> > > > > builtin:findall/3 +> > > > > builtin:memberchk/2 +> > > > > undefined:samsort/2 +> > > > sessionManager:getScreensPath/2 +> > > > > builtin:,/2 +> > > > > sessionManager:getSessionNamespace/1 +> > > > semantics:getVar/3 +> > > > > builtin: = /2 +> > > > > builtin:atom/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > builtin:memberchk/2 +> > > > > builtin:number/1 +> > > > > builtin:throw/1 +> > > > semantics:groundArgs/4 +> > > > > semantics:atomize/2 +> > > > > > builtin:atom/1 +> > > > > > builtin:atom_codes/2 +> > > > > > lists:is_list/1 +> > > > > > builtin:number/1 +> > > > > > builtin:number_codes/2 +> > > > > semantics:evalExpression/4 +> > > > > > builtin: = /2 +> > > > > > builtin: =.. /2 +> > > > > > builtin:atom/1 +> > > > > > semantics:evalExpression/4 ***** looping ***** +> > > > > > builtin:float/1 +> > > > > > semantics:getReturn/2 +> > > > > > > builtin: = /2 +> > > > > > > builtin:member/2 +> > > > > > semantics:getVar/3 +> > > > > > > builtin: = /2 +> > > > > > > builtin:atom/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > builtin:memberchk/2 +> > > > > > > builtin:number/1 +> > > > > > > builtin:throw/1 +> > > > > > builtin:integer/1 +> > > > > > builtin:is/2 +> > > > > > lists:is_list/1 +> > > > > > builtin:member/2 +> > > > builtin:if/3 +> > > > builtin:is/2 +> > > > lists:is_list/1 +> > > > builtin:length/2 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > builtin:nl/0 +> > > > undefined:now/1 +> > > > builtin:number_codes/2 +> > > > solsticeUtility:numeric/1 +> > > > > builtin: < /2 +> > > > > builtin: > /2 +> > > > > solsticeUtility:numeric/1 ***** looping ***** +> > > > semantics:partialKey/2 +> > > > > builtin:atom/1 +> > > > > builtin:do/2 +> > > > > builtin:number/1 +> > > > semantics:readRecordInfo/5 +> > > > > builtin:(\+)/1 +> > > > > lists:is_list/1 +> > > > > lists:same_length/2 +> > > > > semantics:setVar/4 +> > > > > > builtin: = /2 +> > > > > > builtin:(\+)/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > > > > semantics:setVariables/4 +> > > > > > builtin:(\+)/1 +> > > > > > semantics:setVar/4 +> > > > > > > builtin: = /2 +> > > > > > > builtin:(\+)/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > lists:selectchk/4 +> > > > > > > builtin:throw/1 +> > > > > > semantics:setVariables/4 ***** looping ***** +> > > > builtin:retractall/1 +> > > > semantics:runCursor/4 +> > > > > builtin:findall/3 +> > > > semantics:runSelect/4 +> > > > > semantics:applyJoinQueries/3 +> > > > > > lists:append/2 +> > > > > > semantics:checkJoins/2 +> > > > > > > builtin: \== /2 +> > > > > > > semantics:checkJoins/2 ***** looping ***** +> > > > > > > builtin:member/2 +> > > > > semantics:buildQueries/4 +> > > > > > semantics:buildJoinQueries/3 +> > > > > > > lists:append/2 +> > > > > > > builtin:findall/3 +> > > > > > semantics:buildWhereQueries/3 +> > > > > > > builtin:findall/3 +> > > > > builtin:do/2 +> > > > > semantics:runWhereQueries/2 +> > > > > > semantics:checkColumns/2 +> > > > > > > builtin: < /2 +> > > > > > > builtin: =< /2 +> > > > > > > builtin: > /2 +> > > > > > > builtin: >= /2 +> > > > > > > semantics:checkColumns/2 ***** looping ***** +> > > > > > > builtin:member/2 +> > > > > > semantics:runWhereQueries/2 ***** looping ***** +> > > > > > user:dbRow/2 +> > > > semantics:runUpdate/3 +> > > > > builtin:member/2 +> > > > > semantics:runUpdate/3 ***** looping ***** +> > > > semantics:setVar/4 +> > > > > builtin: = /2 +> > > > > builtin:(\+)/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > lists:selectchk/4 +> > > > > builtin:throw/1 +> > > > semantics:setVariables/4 +> > > > > builtin:(\+)/1 +> > > > > semantics:setVar/4 +> > > > > > builtin: = /2 +> > > > > > builtin:(\+)/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > > > > semantics:setVariables/4 ***** looping ***** +> > > > solsticeUtility:splitAtom/3 +> > > > > builtin: = /2 +> > > > > builtin:atom_codes/2 +> > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > builtin:(\+)/1 +> > > > > > builtin:atom_codes/2 +> > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > lists:is_list/1 +> > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > lists:append/2 +> > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > solsticeUtility:structToList/2 +> > > > > solsticeUtility:structToList/2 ***** looping ***** +> > > > > builtin:var/1 +> > > > tclGui:tclQueryBox/2 +> > > > > builtin: = /2 +> > > > > lists:append/2 +> > > > > builtin:atom_codes/2 +> > > > > undefined:tcl_delete/1 +> > > > > undefined:tcl_eval/3 +> > > > > undefined:tk_main_loop/0 +> > > > > undefined:tk_new/2 +> > > > tclScreen:tclScreen/6 +> > > > > builtin:abolish/1 +> > > > > lists:append/2 +> > > > > builtin:atom_codes/2 +> > > > > builtin:atom_concat/3 +> > > > > lists:head/2 +> > > > > lists:last/2 +> > > > > tclScreen:launchMainLoop/1 +> > > > > > tclScreen:handleMainLoop/1 +> > > > > > > builtin:throw/1 +> > > > > > undefined:tk_main_loop/0 +> > > > > tclScreen:launchScript/2 +> > > > > > tclScreen:handleScriptLaunch/1 +> > > > > > > builtin: = /2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:throw/1 +> > > > > > undefined:tcl_eval/3 +> > > > > tclScreen:newEnv/1 +> > > > > builtin:retractall/1 +> > > > > solsticeUtility:splitAtom/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom_codes/2 +> > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > builtin:(\+)/1 +> > > > > > > builtin:atom_codes/2 +> > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > lists:is_list/1 +> > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > lists:append/2 +> > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > tclScreen:tclSourceCommand/2 +> > > > > > lists:append/2 +> > > > > > tclScreen:atomics_concat/2 +> > > > > > > tclScreen:atomics_concat/3 +> > > > > > > > tclScreen:_atomic_to_atom/2 +> > > > > > > > > builtin:atom/1 +> > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:number_codes/2 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > tclScreen:atomics_concat/3 ***** looping ***** +> > > > > undefined:tcl_delete/1 +> > > > > undefined:tk_main_loop/0 +> > > > > undefined:tk_new/2 +> > > > > tclScreen:varListToValues/3 +> > > > > > builtin:(\+)/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:var/1 +> > > > > > tclScreen:varListToValues/3 ***** looping ***** +> > > > > fileInformation:filePath/1 +> > > > > assert-tclScreen:env/1 +> > > > > assert-tclScreen:newEnv/1 +> > > > > assert-tclScreen:screenArguments/1 +> > > > > assert-tclScreen:screenFullPath/1 +> > > > > assert-tclScreen:tclInterpreter/1 +> > > > > assert-tclScreen:variables/1 +> > > > builtin:throw/1 +> > > > builtin:write/1 +> > > > semantics:writeRecordInfo/3 +> > > > > builtin:(\+)/1 +> > > > > builtin:do/2 +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > > lists:is_list/1 +> > > > semantics:writeStruct/2 +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > > builtin:nl/0 +> > > > > builtin:write/1 +> > > > > semantics:writeStruct/2 ***** looping ***** +> > > > user:currentIndex/1 +> > > > user:cursor/3 +> > > > user:cursorQuery/1 +> > > > user:dbRow/2 +> > > > user:fileRecord/3 +> > > > user:representation/2 +> > > > assert-user:currentIndex/1 +> > > > assert-user:cursorQuery/1 +> > > > assert-user:dbRow/2 +> > > > assert-user:nextRecord/2 +> > > > retract-user:dbRow/2 +> > > builtin:member/2 +> > > user:representation/2 +> > dfmStep:findFunctions/3 +> > > lists:append/2 +> > > builtin:findall/3 +> > > user:representation/2 +> > cfmStep:findNextNode/3 +> > > builtin: = /2 +> > > builtin:member/2 +> > > user:representation/2 +> > semantics:resolveNode/4 +> > > builtin: = /2 +> > > builtin:member/2 +> > > semantics:resolve/4 +> > > > builtin: = /2 +> > > > semantics:evalConditional/4 +> > > > > builtin: = /2 +> > > > > builtin: =.. /2 +> > > > > semantics:evalConditional/4 ***** looping ***** +> > > > > semantics:evalExpression/4 +> > > > > > builtin: = /2 +> > > > > > builtin: =.. /2 +> > > > > > builtin:atom/1 +> > > > > > semantics:evalExpression/4 ***** looping ***** +> > > > > > builtin:float/1 +> > > > > > semantics:getReturn/2 +> > > > > > > builtin: = /2 +> > > > > > > builtin:member/2 +> > > > > > semantics:getVar/3 +> > > > > > > builtin: = /2 +> > > > > > > builtin:atom/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > builtin:memberchk/2 +> > > > > > > builtin:number/1 +> > > > > > > builtin:throw/1 +> > > > > > builtin:integer/1 +> > > > > > builtin:is/2 +> > > > > > lists:is_list/1 +> > > > > > builtin:member/2 +> > > > > builtin:member/2 +> > > > > builtin:number/1 +> > > > semantics:executePhiFunction/4 +> > > > > builtin: = /2 +> > > > > semantics:checkVar/2 +> > > > > > builtin:memberchk/2 +> > > > > semantics:executePhiFunction/4 ***** looping ***** +> > > > > semantics:getVar/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:number/1 +> > > > > > builtin:throw/1 +> > > > > semantics:setVar/4 +> > > > > > builtin: = /2 +> > > > > > builtin:(\+)/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > user:representation/2 +> semantics:functionStep/4 +> > builtin: = /2 +> > semantics:findInitialNodes/3 +> > > builtin: = /2 +> > > semantics:createInitialStep/3 +> > > > builtin: = /2 +> > > builtin:findall/3 +> > > builtin:member/2 +> > > user:representation/2 +> > preProcess:loadModule/1 +> > > builtin:atom_concat/3 +> > > preProcess:convertToRepresentation/2 +> > > > builtin:close/1 +> > > > preProcess:createRepresentation/3 +> > > > > builtin: = /2 +> > > > > preProcess:createRepresentation/3 ***** looping ***** +> > > > > builtin:read/2 +> > > > builtin:open/3 +> > > builtin:ground/1 +> > > builtin:if/3 +> > > builtin:member/2 +> > > fileInformation:representationsPath/1 +> > > user:representation/2 +> > > assert-user:representation/2 +> > semantics:mapArguments/5 +> > > builtin: = /2 +> > > semantics:getVar/3 +> > > > builtin: = /2 +> > > > builtin:atom/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > builtin:memberchk/2 +> > > > builtin:number/1 +> > > > builtin:throw/1 +> > > semantics:mapArguments/5 ***** looping ***** +> > > semantics:setVar/4 +> > > > builtin: = /2 +> > > > builtin:(\+)/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > lists:selectchk/4 +> > > > builtin:throw/1 +> > > builtin:throw/1 +> > semantics:mapGlobals/5 +> > > builtin: = /2 +> > > semantics:checkVar/2 +> > > > builtin:memberchk/2 +> > > semantics:getVar/3 +> > > > builtin: = /2 +> > > > builtin:atom/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > builtin:memberchk/2 +> > > > builtin:number/1 +> > > > builtin:throw/1 +> > > semantics:mapGlobals/5 ***** looping ***** +> > > semantics:setVar/4 +> > > > builtin: = /2 +> > > > builtin:(\+)/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > lists:selectchk/4 +> > > > builtin:throw/1 +> > > builtin:throw/1 +> > semantics:mapReturn/5 +> > > builtin: = /2 +> > > semantics:checkVar/2 +> > > > builtin:memberchk/2 +> > > semantics:getVar/3 +> > > > builtin: = /2 +> > > > builtin:atom/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > builtin:memberchk/2 +> > > > builtin:number/1 +> > > > builtin:throw/1 +> > > builtin:member/2 +> > > semantics:setVar/4 +> > > > builtin: = /2 +> > > > builtin:(\+)/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > lists:selectchk/4 +> > > > builtin:throw/1 +> > builtin:member/2 +> > user:representation/2 + +----- Going Down preProcess:runCfm/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +preprocess.pro 18:41 + +preProcess:runCfm/3 uses: +> preProcess:buildFolderPathFromList/3 +> > builtin:atom_concat/3 +> > preProcess:buildFolderPathFromList/3 ***** looping ***** +> solsticeUtility:cleanup/1 +> > builtin:abolish/1 +> > builtin:append/3 +> > builtin:findall/3 +> > builtin:nl/1 +> > builtin:open/3 +> > builtin:retractall/1 +> > builtin:write/2 +> > solsticeUtility:writeToStream/2 +> > > builtin:close/1 +> > > builtin:nl/1 +> > > builtin:write/2 +> > > solsticeUtility:writeToStream/2 ***** looping ***** +> > > builtin:writeq/2 +> preProcess:convertToRepresentation/2 +> > builtin:close/1 +> > preProcess:createRepresentation/3 +> > > builtin: = /2 +> > > preProcess:createRepresentation/3 ***** looping ***** +> > > builtin:read/2 +> > builtin:open/3 +> interpreter:deleteDuplicates/2 +> > lists:append/2 +> > interpreter:deleteDuplicates/4 +> > > builtin: = /2 +> > > interpreter:deleteDuplicates/4 ***** looping ***** +> > > builtin:member/2 +> > lists:reverse/2 +> preProcess:fileAssert/1 +> > user:assert/1 +> semantics:findInitialNodes/3 +> > builtin: = /2 +> > semantics:createInitialStep/3 +> > > builtin: = /2 +> > builtin:findall/3 +> > builtin:member/2 +> > user:representation/2 +> interpreter:interpret/4 +> > builtin: = /2 +> > builtin: =.. /2 +> > builtin:append/3 +> > builtin:call/1 +> > interpreter:deleteDuplicates/2 +> > > lists:append/2 +> > > interpreter:deleteDuplicates/4 +> > > > builtin: = /2 +> > > > interpreter:deleteDuplicates/4 ***** looping ***** +> > > > builtin:member/2 +> > > lists:reverse/2 +> > interpreter:interpret/4 ***** looping ***** +> preProcess:loadEnvironment/2 +> > builtin:close/1 +> > builtin:open/3 +> > builtin:read/2 +> errorHandler:logError/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > errorHandler:logErrorDetails/1 +> > > builtin:atom/1 +> > > builtin:atom_concat/3 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > > errorHandler:logErrorDetails/1 ***** looping ***** +> builtin:member/2 +> solsticeUtility:splitAtom/3 +> > builtin: = /2 +> > builtin:atom_codes/2 +> > solsticeUtility:characterCodesToAtoms/2 +> > > builtin:(\+)/1 +> > > builtin:atom_codes/2 +> > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > lists:is_list/1 +> > solsticeUtility:splitCharacterCodes/3 +> > > lists:append/2 +> > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> assert-fileInformation:fileOutputPath/1 +> assert-fileInformation:filePath/1 +> assert-fileInformation:representationsPath/1 +> assert-user:representation/2 + +----- Going Down preProcess:runDfm/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +preprocess.pro 41:64 + +preProcess:runDfm/3 uses: +> preProcess:buildFolderPathFromList/3 +> > builtin:atom_concat/3 +> > preProcess:buildFolderPathFromList/3 ***** looping ***** +> solsticeUtility:cleanup/1 +> > builtin:abolish/1 +> > builtin:append/3 +> > builtin:findall/3 +> > builtin:nl/1 +> > builtin:open/3 +> > builtin:retractall/1 +> > builtin:write/2 +> > solsticeUtility:writeToStream/2 +> > > builtin:close/1 +> > > builtin:nl/1 +> > > builtin:write/2 +> > > solsticeUtility:writeToStream/2 ***** looping ***** +> > > builtin:writeq/2 +> preProcess:convertToRepresentation/2 +> > builtin:close/1 +> > preProcess:createRepresentation/3 +> > > builtin: = /2 +> > > preProcess:createRepresentation/3 ***** looping ***** +> > > builtin:read/2 +> > builtin:open/3 +> interpreter:deleteDuplicates/2 +> > lists:append/2 +> > interpreter:deleteDuplicates/4 +> > > builtin: = /2 +> > > interpreter:deleteDuplicates/4 ***** looping ***** +> > > builtin:member/2 +> > lists:reverse/2 +> preProcess:fileAssert/1 +> > user:assert/1 +> semantics:findInitialNodes/3 +> > builtin: = /2 +> > semantics:createInitialStep/3 +> > > builtin: = /2 +> > builtin:findall/3 +> > builtin:member/2 +> > user:representation/2 +> interpreter:interpret/4 +> > builtin: = /2 +> > builtin: =.. /2 +> > builtin:append/3 +> > builtin:call/1 +> > interpreter:deleteDuplicates/2 +> > > lists:append/2 +> > > interpreter:deleteDuplicates/4 +> > > > builtin: = /2 +> > > > interpreter:deleteDuplicates/4 ***** looping ***** +> > > > builtin:member/2 +> > > lists:reverse/2 +> > interpreter:interpret/4 ***** looping ***** +> preProcess:loadEnvironment/2 +> > builtin:close/1 +> > builtin:open/3 +> > builtin:read/2 +> errorHandler:logError/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > errorHandler:logErrorDetails/1 +> > > builtin:atom/1 +> > > builtin:atom_concat/3 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > > errorHandler:logErrorDetails/1 ***** looping ***** +> builtin:member/2 +> solsticeUtility:splitAtom/3 +> > builtin: = /2 +> > builtin:atom_codes/2 +> > solsticeUtility:characterCodesToAtoms/2 +> > > builtin:(\+)/1 +> > > builtin:atom_codes/2 +> > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > lists:is_list/1 +> > solsticeUtility:splitCharacterCodes/3 +> > > lists:append/2 +> > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> assert-fileInformation:fileOutputPath/1 +> assert-fileInformation:filePath/1 +> assert-fileInformation:representationsPath/1 +> assert-user:representation/2 + +----- Going Down preProcess:retractState/0 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +preprocess.pro 93:96 + +preProcess:retractState/0 uses: +> builtin:retractall/1 + +----- Going Down preProcess:initializeDebug/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +preprocess.pro 96:118 + +preProcess:initializeDebug/2 uses: +> preProcess:buildFolderPathFromList/3 +> > builtin:atom_concat/3 +> > preProcess:buildFolderPathFromList/3 ***** looping ***** +> preProcess:convertToRepresentation/2 +> > builtin:close/1 +> > preProcess:createRepresentation/3 +> > > builtin: = /2 +> > > preProcess:createRepresentation/3 ***** looping ***** +> > > builtin:read/2 +> > builtin:open/3 +> interpreter:deleteDuplicates/2 +> > lists:append/2 +> > interpreter:deleteDuplicates/4 +> > > builtin: = /2 +> > > interpreter:deleteDuplicates/4 ***** looping ***** +> > > builtin:member/2 +> > lists:reverse/2 +> preProcess:fileAssert/1 +> > user:assert/1 +> semantics:findInitialNodes/3 +> > builtin: = /2 +> > semantics:createInitialStep/3 +> > > builtin: = /2 +> > builtin:findall/3 +> > builtin:member/2 +> > user:representation/2 +> lists:last/2 +> preProcess:loadEnvironment/2 +> > builtin:close/1 +> > builtin:open/3 +> > builtin:read/2 +> solsticeUtility:match/2 +> > solsticeUtility:match/2 ***** looping ***** +> > builtin:memberchk/2 +> builtin:member/2 +> preProcess:saveState/2 +> > builtin:retractall/1 +> > assert-preProcess:outEnv/1 +> > assert-preProcess:stepStack/1 +> solsticeUtility:splitAtom/3 +> > builtin: = /2 +> > builtin:atom_codes/2 +> > solsticeUtility:characterCodesToAtoms/2 +> > > builtin:(\+)/1 +> > > builtin:atom_codes/2 +> > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > lists:is_list/1 +> > solsticeUtility:splitCharacterCodes/3 +> > > lists:append/2 +> > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> assert-fileInformation:filePath/1 +> assert-fileInformation:representationsPath/1 +> assert-user:representation/2 + +----- Going Down preProcess:step/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +preprocess.pro 118:128 + +preProcess:step/2 uses: +> preProcess:getState/2 +> > preProcess:outEnv/1 +> > preProcess:stepStack/1 +> builtin:if/3 +> solsticeUtility:match/2 +> > solsticeUtility:match/2 ***** looping ***** +> > builtin:memberchk/2 +> lists:nth0/3 +> preProcess:stepRecurse/1 +> > interpreter:debug/5 +> > > builtin: = /2 +> > > builtin: =.. /2 +> > > builtin:append/3 +> > > builtin:call/1 +> > > interpreter:deleteDuplicates/2 +> > > > lists:append/2 +> > > > interpreter:deleteDuplicates/4 +> > > > > builtin: = /2 +> > > > > interpreter:deleteDuplicates/4 ***** looping ***** +> > > > > builtin:member/2 +> > > > lists:reverse/2 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > preProcess:getState/2 +> > > preProcess:outEnv/1 +> > > preProcess:stepStack/1 +> > builtin:if/3 +> > preProcess:saveState/2 +> > > builtin:retractall/1 +> > > assert-preProcess:outEnv/1 +> > > assert-preProcess:stepStack/1 + +----- Going Down preProcess:terminateDebug/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +preprocess.pro 139:148 + +preProcess:terminateDebug/2 uses: +> builtin:abolish/1 +> solsticeUtility:cleanup/1 +> > builtin:abolish/1 +> > builtin:append/3 +> > builtin:findall/3 +> > builtin:nl/1 +> > builtin:open/3 +> > builtin:retractall/1 +> > builtin:write/2 +> > solsticeUtility:writeToStream/2 +> > > builtin:close/1 +> > > builtin:nl/1 +> > > builtin:write/2 +> > > solsticeUtility:writeToStream/2 ***** looping ***** +> > > builtin:writeq/2 +> solsticeUtility:match/2 +> > solsticeUtility:match/2 ***** looping ***** +> > builtin:memberchk/2 + +----- Going Down preProcess:getVariableInformation/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +preprocess.pro 148:157 + +preProcess:getVariableInformation/3 uses: +> builtin:findall/3 +> preProcess:getValues/3 +> > preProcess:escapeValue/2 +> > > builtin:atom/1 +> > > builtin:atom_codes/2 +> > > preProcess:escapedCodes/3 +> > > > builtin: = /2 +> > > > preProcess:escapedCodes/3 ***** looping ***** +> > > > builtin:member/2 +> > preProcess:getValues/3 ***** looping ***** +> > builtin:member/2 +> builtin:sort/2 + +----- Going Down preProcess:findStartNode/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +preprocess.pro 195:201 + +preProcess:findStartNode/2 uses: +> builtin: = /2 +> builtin:member/2 + +----- Going Down preProcess:isAFile/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +preprocess.pro 201:206 + +preProcess:isAFile/2 uses: +> builtin:(\+)/1 +> builtin:functor/3 +> builtin:member/2 + +----- Going Down executeMiniProgram:v/0 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +generateSemanticFacts.pro 0:4 + +executeMiniProgram:v/0 uses: +> builtin:module/2 + +----- Going Down taggedParsing:(:-)/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +taggedParsing.pro 48:49 + +taggedParsing:(:-)/1 uses: + +----- Going Down taggedParsing: : /2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +taggedParsing.pro 53:66 + +taggedParsing: : /2 uses: +> builtin: =.. /2 +> builtin:append/3 +> taggedParsing:convertBody/6 +> > taggedParsing:convertBodyList/6 +> > > builtin: = /2 +> > > builtin: =.. /2 +> > > builtin:append/3 +> > > taggedParsing:convertBody/6 ***** looping ***** +> > > taggedParsing:convertBodyList/6 ***** looping ***** +> > > builtin:if/3 +> > > lists:is_list/1 +> > > lists:keys_and_values/3 +> > > taggedParsing:selectPredicate/4 +> > > builtin:var/1 +> > taggedParsing:structToList/2 +> > > taggedParsing:structToList/2 ***** looping ***** +> > > builtin:var/1 +> builtin:if/3 +> taggedParsing:selectPredicate/4 + +----- Going Down taggedParsing:tagPhrase/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/taggedParsing.pro +taggedParsing.pro 124:128 + +taggedParsing:tagPhrase/5 uses: +> taggedParsing:tagPhrase/6 +> > builtin:if/3 +> > taggedParsing:structToList/2 +> > > taggedParsing:structToList/2 ***** looping ***** +> > > builtin:var/1 +> > taggedParsing:tagPhraseList/6 +> > > builtin: = /2 +> > > builtin:append/3 +> > > builtin:call/1 +> > > builtin:call/5 +> > > builtin:if/3 +> > > lists:is_list/1 +> > > lists:keys_and_values/3 +> > > taggedParsing:mergeTags/2 +> > > > builtin:(\+)/1 +> > > > lists:append/2 +> > > > lists:delete/3 +> > > > lists:max_member/2 +> > > > lists:min_member/2 +> > > > lists:reverse/2 +> > > > lists:transpose/2 +> > > taggedParsing:tagPhrase/6 ***** looping ***** +> > > taggedParsing:tagPhraseList/6 ***** looping ***** +> > > taggedParsing:mergeTags/2 +> > > > builtin:(\+)/1 +> > > > lists:append/2 +> > > > lists:delete/3 +> > > > lists:max_member/2 +> > > > lists:min_member/2 +> > > > lists:reverse/2 +> > > > lists:transpose/2 + +----- Going Down libraryModule:getLibFunction/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +libraryModule.pro 11:22 + +libraryModule:getLibFunction/3 uses: +> libraryModule:libFunction/6 + +----- Going Down libraryModule:runLibFunction/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +libraryModule.pro 22:36 + +libraryModule:runLibFunction/3 uses: +> builtin:call/1 +> libraryModule:insertArg/3 +> > builtin: =.. /2 +> > builtin:append/3 +> libraryModule:libFunction/6 + +----- Going Down libraryModule:libPrintf/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +libraryModule.pro 238:244 + +libraryModule:libPrintf/3 uses: +> builtin:,/2 + +----- Going Down libraryModule:libCreatePrintf/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/libraryFunctions/libraryModule.pro +libraryModule.pro 244:250 + +libraryModule:libCreatePrintf/4 uses: +> undefined: : /3 +> builtin:assert/1 +> dfmCreate:varsAexp/2 +> > builtin: = /2 +> > solsticeUtility:subtermSelect/4 +> > > builtin: =.. /2 +> > > builtin:nonvar/1 +> > > lists:same_length/2 +> > > lists:select/4 +> > > solsticeUtility:subtermSelect/4 ***** looping ***** +> > dfmCreate:varsAexp/2 ***** looping ***** + +----- Going Down tokenize:fullLineTokens/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +tokenize.pro 25:29 + +tokenize:fullLineTokens/1 uses: +> builtin:./2 +> tokenize:lineTokens/1 +> > undefined:(-)/2 +> > builtin:./2 +> > tokenize:lineTokens/1 ***** looping ***** +> > tokenize:stringCharecterCodes/1 +> > > builtin:[]/0 +> > > tokenize:stringCharecterCode/1 +> > > > builtin:./2 +> > > tokenize:stringCharecterCodes/1 ***** looping ***** +> > tokenize:whitespace/0 +> > > builtin:[]/0 +> > > tokenize:whitespace/0 ***** looping ***** +> > > tokenize:whitespaceCharCode/0 +> > > > builtin:./2 +> > > > undefined:{}/1 +> > undefined:{}/1 +> tokenize:margin/1 +> > builtin:./2 +> > builtin:[]/0 +> > tokenize:margin/1 ***** looping ***** +> > undefined:{}/1 +> tokenize:stringCharecterCodes/1 +> > builtin:[]/0 +> > tokenize:stringCharecterCode/1 +> > > builtin:./2 +> > tokenize:stringCharecterCodes/1 ***** looping ***** +> undefined:{}/1 + +----- Going Down tokenize:token/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +tokenize.pro 49:51 + +tokenize:token/1 uses: +> tokenize:capitalizedAlphanumericToken/1 +> > tokenize:alphanumericCode/1 +> > > builtin:[]/0 +> > > tokenize:alphanumericCharCode/1 +> > > > builtin:./2 +> > > > tokenize:digitCode/1 +> > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > > tokenize:letterCode/1 +> > > > > tokenize:lowercaseLetterCode/1 +> > > > > > builtin:./2 +> > > > > > undefined:{}/1 +> > > > > tokenize:uppercaseLetterCode/1 +> > > > > > builtin:./2 +> > > > > > undefined:{}/1 +> > > > > undefined:{}/1 +> > > > undefined:{}/1 +> > > tokenize:alphanumericCode/1 ***** looping ***** +> > tokenize:uppercaseLetterCode/1 +> > > builtin:./2 +> > > undefined:{}/1 +> > undefined:{}/1 +> tokenize:numberToken/1 +> > tokenize:digitCode/1 +> > > builtin:./2 +> > > undefined:{}/1 +> > tokenize:doubleCode/1 +> > > builtin:./2 +> > > tokenize:digitCode/1 +> > > > builtin:./2 +> > > > undefined:{}/1 +> > > tokenize:numberCode/1 +> > > > builtin:[]/0 +> > > > tokenize:digitCode/1 +> > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > > tokenize:numberCode/1 ***** looping ***** +> > > undefined:{}/1 +> > tokenize:numberCode/1 +> > > builtin:[]/0 +> > > tokenize:digitCode/1 +> > > > builtin:./2 +> > > > undefined:{}/1 +> > > tokenize:numberCode/1 ***** looping ***** +> > undefined:{}/1 +> tokenize:punctuationToken/1 +> > builtin:./2 +> > undefined:{}/1 +> tokenize:stringToken/1 +> > tokenize:punctuationToken/1 +> > > builtin:./2 +> > > undefined:{}/1 +> > tokenize:stringCharecters/1 +> > > tokenize:stringCharecterCodes/1 +> > > > builtin:[]/0 +> > > > tokenize:stringCharecterCode/1 +> > > > > builtin:./2 +> > > > tokenize:stringCharecterCodes/1 ***** looping ***** +> > > undefined:{}/1 +> tokenize:uncapitalizedAlphanumericToken/1 +> > tokenize:alphanumericCode/1 +> > > builtin:[]/0 +> > > tokenize:alphanumericCharCode/1 +> > > > builtin:./2 +> > > > tokenize:digitCode/1 +> > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > > tokenize:letterCode/1 +> > > > > tokenize:lowercaseLetterCode/1 +> > > > > > builtin:./2 +> > > > > > undefined:{}/1 +> > > > > tokenize:uppercaseLetterCode/1 +> > > > > > builtin:./2 +> > > > > > undefined:{}/1 +> > > > > undefined:{}/1 +> > > > undefined:{}/1 +> > > tokenize:alphanumericCode/1 ***** looping ***** +> > tokenize:lowercaseLetterCode/1 +> > > builtin:./2 +> > > undefined:{}/1 +> > undefined:{}/1 +> undefined:whiteSpaceToken/1 + +----- Going Down tokenize:capitalize/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +tokenize.pro 104:107 + +tokenize:capitalize/2 uses: +> builtin:is/2 + +----- Going Down miniCParse:definitions/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +miniCParse.pro 34:47 + +miniCParse:definitions/1 uses: +> miniCParse:comments/0 +> > builtin:[]/0 +> > miniCParse:comments/0 ***** looping ***** +> > miniCParse:miniCTokens/1 +> > > builtin:[]/0 +> > > miniCParse:miniCTokens/1 ***** looping ***** +> > > miniCParse:token/1 +> > > > builtin:./2 +> > > > miniCParse:comments/0 ***** looping ***** +> > miniCParse:punctuationToken/1 +> > > builtin:./2 +> > > miniCParse:comments/0 ***** looping ***** +> miniCParse:functionDefinitions/1 +> > builtin:[]/0 +> > undefined:functionDefinition/1 +> > miniCParse:functionDefinitions/1 ***** looping ***** +> > miniCParse:parseCheckpoint/0 +> > > miniCParse:(-)/2 +> > > > miniCParse:curlyBracketed/1 +> > > > > miniCParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > miniCParse:dataType/1 +> > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > undefined:{}/1 +> > > > miniCParse:functionDeclaration/2 +> > > > > miniCParse:parenthesized/1 +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:parseCheckpoint/0 ***** looping ***** +> > > > undefined:{}/1 +> > > builtin:[]/0 +> > > undefined:{}/1 +> > undefined:{}/1 +> miniCParse:globalDefinitions/2 +> > builtin:[]/0 +> > miniCParse:globalDefinition/2 +> > > miniCParse:alphanumericToken/1 +> > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > miniCParse:curlyBracketed/1 +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > miniCParse:parseCheckpoint/0 +> > > > miniCParse:(-)/2 +> > > > > miniCParse:curlyBracketed/1 +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > miniCParse:dataType/1 +> > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > undefined:{}/1 +> > > > > miniCParse:functionDeclaration/2 +> > > > > > miniCParse:parenthesized/1 +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:parseCheckpoint/0 ***** looping ***** +> > > > > undefined:{}/1 +> > > > builtin:[]/0 +> > > > undefined:{}/1 +> > > miniCParse:punctuationToken/1 +> > > > builtin:./2 +> > > > miniCParse:comments/0 +> > > > > builtin:[]/0 +> > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:miniCTokens/1 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > miniCParse:token/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > miniCParse:statement/1 +> > > > miniCParse:alphanumericToken/1 +> > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:dataType/1 +> > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > undefined:{}/1 +> > > > miniCParse:externalFunction/4 +> > > > > miniCParse:alphanumericToken/1 +> > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:arguments/2 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:argument/2 +> > > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > > miniCParse:arithmeticFunction/2 +> > > > > > > > miniCParse:arithmeticExpression/2 +> > > > > > > > > miniCParse:arithmeticExpression/2 ***** looping ***** +> > > > > > > > > miniCParse:arithmeticExpression/3 +> > > > > > > > > > miniCParse:arithmeticExpression/2 ***** looping ***** +> > > > > > > > > > miniCParse:arithmeticExpression/3 ***** looping ***** +> > > > > > > > > > miniCParse:arithmeticTerm/2 +> > > > > > > > > > > miniCParse:arithmeticFactor/2 +> > > > > > > > > > > > miniCParse:arithmeticFactor/2 ***** looping ***** +> > > > > > > > > > > > miniCParse:externalFunction/4 ***** looping ***** +> > > > > > > > > > > > miniCParse:function/3 +> > > > > > > > > > > > > miniCParse:parenthesized/1 +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:numberToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:numberToken/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > > undefined:{}/1 +> > > > > > > > > > > > miniCParse:parenthesized/1 +> > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:variableInstance/1 +> > > > > > > > > > > > > miniCParse:variableName/1 +> > > > > > > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > > > > > > > miniCParse:arithmeticTerm/2 ***** looping ***** +> > > > > > > > > > > miniCParse:arithmeticTerm/3 +> > > > > > > > > > > > miniCParse:arithmeticFactor/2 +> > > > > > > > > > > > > miniCParse:arithmeticFactor/2 ***** looping ***** +> > > > > > > > > > > > > miniCParse:externalFunction/4 ***** looping ***** +> > > > > > > > > > > > > miniCParse:function/3 +> > > > > > > > > > > > > > miniCParse:parenthesized/1 +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:numberToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:numberToken/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > > > undefined:{}/1 +> > > > > > > > > > > > > miniCParse:parenthesized/1 +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:variableInstance/1 +> > > > > > > > > > > > > > miniCParse:variableName/1 +> > > > > > > > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:arithmeticTerm/2 ***** looping ***** +> > > > > > > > > > > > miniCParse:arithmeticTerm/3 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > undefined:{}/1 +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > undefined:{}/1 +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > undefined:{}/1 +> > > > > > > > > miniCParse:arithmeticTerm/2 +> > > > > > > > > > miniCParse:arithmeticFactor/2 +> > > > > > > > > > > miniCParse:arithmeticFactor/2 ***** looping ***** +> > > > > > > > > > > miniCParse:externalFunction/4 ***** looping ***** +> > > > > > > > > > > miniCParse:function/3 +> > > > > > > > > > > > miniCParse:parenthesized/1 +> > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:numberToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:numberToken/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > undefined:{}/1 +> > > > > > > > > > > miniCParse:parenthesized/1 +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > miniCParse:variableInstance/1 +> > > > > > > > > > > > miniCParse:variableName/1 +> > > > > > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > > > > > > miniCParse:arithmeticTerm/2 ***** looping ***** +> > > > > > > > > > miniCParse:arithmeticTerm/3 +> > > > > > > > > > > miniCParse:arithmeticFactor/2 +> > > > > > > > > > > > miniCParse:arithmeticFactor/2 ***** looping ***** +> > > > > > > > > > > > miniCParse:externalFunction/4 ***** looping ***** +> > > > > > > > > > > > miniCParse:function/3 +> > > > > > > > > > > > > miniCParse:parenthesized/1 +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:numberToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:numberToken/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > > undefined:{}/1 +> > > > > > > > > > > > miniCParse:parenthesized/1 +> > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:variableInstance/1 +> > > > > > > > > > > > > miniCParse:variableName/1 +> > > > > > > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > > > > > > > miniCParse:arithmeticTerm/2 ***** looping ***** +> > > > > > > > > > > miniCParse:arithmeticTerm/3 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > undefined:{}/1 +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > undefined:{}/1 +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > undefined:{}/1 +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > miniCParse:stringToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:variableInstance/1 +> > > > > > > > miniCParse:variableName/1 +> > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > undefined:{}/1 +> > > > > miniCParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > undefined:{}/1 +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > miniCParse:stringToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:variableInstance/1 +> > > > > miniCParse:variableName/1 +> > > > > > miniCParse:alphanumericToken/1 +> > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > undefined:{}/1 +> > > undefined:{}/1 +> > miniCParse:globalDefinitions/2 ***** looping ***** +> > undefined:{}/1 +> miniCParse:parseCheckpoint/0 +> > miniCParse:(-)/2 +> > > miniCParse:curlyBracketed/1 +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > miniCParse:dataType/1 +> > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > undefined:{}/1 +> > > miniCParse:functionDeclaration/2 +> > > > miniCParse:parenthesized/1 +> > > > > miniCParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > miniCParse:parseCheckpoint/0 ***** looping ***** +> > > undefined:{}/1 +> > builtin:[]/0 +> > undefined:{}/1 + +----- Going Down miniCParse:expandStructure/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +miniCParse.pro 67:70 + +miniCParse:expandStructure/3 uses: +> miniCParse:expandElement/3 + +----- Going Down miniCParse:structureDefinition/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +miniCParse.pro 87:94 + +miniCParse:structureDefinition/1 uses: +> miniCParse:alphanumericToken/1 +> > miniCParse:capitalizedAlphanumericToken/1 +> > > builtin:./2 +> > > miniCParse:comments/0 +> > > > builtin:[]/0 +> > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:miniCTokens/1 +> > > > > builtin:[]/0 +> > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > miniCParse:token/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 ***** looping ***** +> > miniCParse:uncapitalizedAlphanumericToken/1 +> > > builtin:./2 +> > > miniCParse:comments/0 +> > > > builtin:[]/0 +> > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:miniCTokens/1 +> > > > > builtin:[]/0 +> > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > miniCParse:token/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 ***** looping ***** +> miniCParse:curlyBracketed/1 +> > miniCParse:punctuationToken/1 +> > > builtin:./2 +> > > miniCParse:comments/0 +> > > > builtin:[]/0 +> > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:miniCTokens/1 +> > > > > builtin:[]/0 +> > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > miniCParse:token/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:punctuationToken/1 ***** looping ***** + +----- Going Down miniCParse:statement/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +miniCParse.pro 159:165 + +miniCParse:statement/2 uses: +> miniCParse:alphanumericToken/1 +> > miniCParse:capitalizedAlphanumericToken/1 +> > > builtin:./2 +> > > miniCParse:comments/0 +> > > > builtin:[]/0 +> > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:miniCTokens/1 +> > > > > builtin:[]/0 +> > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > miniCParse:token/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 ***** looping ***** +> > miniCParse:uncapitalizedAlphanumericToken/1 +> > > builtin:./2 +> > > miniCParse:comments/0 +> > > > builtin:[]/0 +> > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:miniCTokens/1 +> > > > > builtin:[]/0 +> > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > miniCParse:token/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 ***** looping ***** +> miniCParse:argument/2 +> > miniCParse:arguments/2 +> > > builtin:[]/0 +> > > miniCParse:argument/2 ***** looping ***** +> > > miniCParse:arguments/2 ***** looping ***** +> > > miniCParse:punctuationToken/1 +> > > > builtin:./2 +> > > > miniCParse:comments/0 +> > > > > builtin:[]/0 +> > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:miniCTokens/1 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > miniCParse:token/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > undefined:{}/1 +> > miniCParse:arithmeticFunction/2 +> > > miniCParse:arithmeticExpression/2 +> > > > miniCParse:arithmeticExpression/2 ***** looping ***** +> > > > miniCParse:arithmeticExpression/3 +> > > > > miniCParse:arithmeticExpression/2 ***** looping ***** +> > > > > miniCParse:arithmeticExpression/3 ***** looping ***** +> > > > > miniCParse:arithmeticTerm/2 +> > > > > > miniCParse:arithmeticFactor/2 +> > > > > > > miniCParse:arithmeticFactor/2 ***** looping ***** +> > > > > > > miniCParse:externalFunction/4 +> > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:arguments/2 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:argument/2 ***** looping ***** +> > > > > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > undefined:{}/1 +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > undefined:{}/1 +> > > > > > > miniCParse:function/3 +> > > > > > > > miniCParse:parenthesized/1 +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:numberToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:numberToken/1 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > undefined:{}/1 +> > > > > > > miniCParse:parenthesized/1 +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > miniCParse:variableInstance/1 +> > > > > > > > miniCParse:variableName/1 +> > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > > miniCParse:arithmeticTerm/2 ***** looping ***** +> > > > > > miniCParse:arithmeticTerm/3 +> > > > > > > miniCParse:arithmeticFactor/2 +> > > > > > > > miniCParse:arithmeticFactor/2 ***** looping ***** +> > > > > > > > miniCParse:externalFunction/4 +> > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:arguments/2 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:argument/2 ***** looping ***** +> > > > > > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > undefined:{}/1 +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > undefined:{}/1 +> > > > > > > > miniCParse:function/3 +> > > > > > > > > miniCParse:parenthesized/1 +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:numberToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:numberToken/1 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > undefined:{}/1 +> > > > > > > > miniCParse:parenthesized/1 +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > miniCParse:variableInstance/1 +> > > > > > > > > miniCParse:variableName/1 +> > > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > > > miniCParse:arithmeticTerm/2 ***** looping ***** +> > > > > > > miniCParse:arithmeticTerm/3 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > undefined:{}/1 +> > > > > miniCParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > undefined:{}/1 +> > > > miniCParse:arithmeticTerm/2 +> > > > > miniCParse:arithmeticFactor/2 +> > > > > > miniCParse:arithmeticFactor/2 ***** looping ***** +> > > > > > miniCParse:externalFunction/4 +> > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:arguments/2 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:argument/2 ***** looping ***** +> > > > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > undefined:{}/1 +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCParse:function/3 +> > > > > > > miniCParse:parenthesized/1 +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:numberToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:numberToken/1 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCParse:parenthesized/1 +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > miniCParse:variableInstance/1 +> > > > > > > miniCParse:variableName/1 +> > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > miniCParse:arithmeticTerm/2 ***** looping ***** +> > > > > miniCParse:arithmeticTerm/3 +> > > > > > miniCParse:arithmeticFactor/2 +> > > > > > > miniCParse:arithmeticFactor/2 ***** looping ***** +> > > > > > > miniCParse:externalFunction/4 +> > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:arguments/2 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:argument/2 ***** looping ***** +> > > > > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > undefined:{}/1 +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > undefined:{}/1 +> > > > > > > miniCParse:function/3 +> > > > > > > > miniCParse:parenthesized/1 +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:numberToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:numberToken/1 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > undefined:{}/1 +> > > > > > > miniCParse:parenthesized/1 +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > miniCParse:variableInstance/1 +> > > > > > > > miniCParse:variableName/1 +> > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > > miniCParse:arithmeticTerm/2 ***** looping ***** +> > > > > > miniCParse:arithmeticTerm/3 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > undefined:{}/1 +> > > > > miniCParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > undefined:{}/1 +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > undefined:{}/1 +> > miniCParse:punctuationToken/1 +> > > builtin:./2 +> > > miniCParse:comments/0 +> > > > builtin:[]/0 +> > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:miniCTokens/1 +> > > > > builtin:[]/0 +> > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > miniCParse:token/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:punctuationToken/1 ***** looping ***** +> > miniCParse:stringToken/1 +> > > builtin:./2 +> > > miniCParse:comments/0 +> > > > builtin:[]/0 +> > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:miniCTokens/1 +> > > > > builtin:[]/0 +> > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > miniCParse:token/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 ***** looping ***** +> > miniCParse:variableInstance/1 +> > > miniCParse:variableName/1 +> > > > miniCParse:alphanumericToken/1 +> > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > miniCParse:variableName/1 ***** looping ***** +> miniCParse:arithmeticFunction/2 +> > miniCParse:arithmeticExpression/2 +> > > miniCParse:arithmeticExpression/2 ***** looping ***** +> > > miniCParse:arithmeticExpression/3 +> > > > miniCParse:arithmeticExpression/2 ***** looping ***** +> > > > miniCParse:arithmeticExpression/3 ***** looping ***** +> > > > miniCParse:arithmeticTerm/2 +> > > > > miniCParse:arithmeticFactor/2 +> > > > > > miniCParse:arithmeticFactor/2 ***** looping ***** +> > > > > > miniCParse:externalFunction/4 +> > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:arguments/2 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:argument/2 +> > > > > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > > > > miniCParse:arithmeticFunction/2 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > miniCParse:stringToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:variableInstance/1 +> > > > > > > > > > miniCParse:variableName/1 +> > > > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > undefined:{}/1 +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCParse:function/3 +> > > > > > > miniCParse:parenthesized/1 +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:numberToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:numberToken/1 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCParse:parenthesized/1 +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > miniCParse:variableInstance/1 +> > > > > > > miniCParse:variableName/1 +> > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > miniCParse:arithmeticTerm/2 ***** looping ***** +> > > > > miniCParse:arithmeticTerm/3 +> > > > > > miniCParse:arithmeticFactor/2 +> > > > > > > miniCParse:arithmeticFactor/2 ***** looping ***** +> > > > > > > miniCParse:externalFunction/4 +> > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:arguments/2 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:argument/2 +> > > > > > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > > > > > miniCParse:arithmeticFunction/2 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > miniCParse:stringToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:variableInstance/1 +> > > > > > > > > > > miniCParse:variableName/1 +> > > > > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > undefined:{}/1 +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > undefined:{}/1 +> > > > > > > miniCParse:function/3 +> > > > > > > > miniCParse:parenthesized/1 +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:numberToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:numberToken/1 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > undefined:{}/1 +> > > > > > > miniCParse:parenthesized/1 +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > miniCParse:variableInstance/1 +> > > > > > > > miniCParse:variableName/1 +> > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > > miniCParse:arithmeticTerm/2 ***** looping ***** +> > > > > > miniCParse:arithmeticTerm/3 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > undefined:{}/1 +> > > > > miniCParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > undefined:{}/1 +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > undefined:{}/1 +> > > miniCParse:arithmeticTerm/2 +> > > > miniCParse:arithmeticFactor/2 +> > > > > miniCParse:arithmeticFactor/2 ***** looping ***** +> > > > > miniCParse:externalFunction/4 +> > > > > > miniCParse:alphanumericToken/1 +> > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:arguments/2 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:argument/2 +> > > > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > > > miniCParse:arithmeticFunction/2 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > miniCParse:stringToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:variableInstance/1 +> > > > > > > > > miniCParse:variableName/1 +> > > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > undefined:{}/1 +> > > > > miniCParse:function/3 +> > > > > > miniCParse:parenthesized/1 +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:numberToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:numberToken/1 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > undefined:{}/1 +> > > > > miniCParse:parenthesized/1 +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > miniCParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > miniCParse:variableInstance/1 +> > > > > > miniCParse:variableName/1 +> > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > miniCParse:arithmeticTerm/2 ***** looping ***** +> > > > miniCParse:arithmeticTerm/3 +> > > > > miniCParse:arithmeticFactor/2 +> > > > > > miniCParse:arithmeticFactor/2 ***** looping ***** +> > > > > > miniCParse:externalFunction/4 +> > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:arguments/2 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:argument/2 +> > > > > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > > > > miniCParse:arithmeticFunction/2 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > miniCParse:stringToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:variableInstance/1 +> > > > > > > > > > miniCParse:variableName/1 +> > > > > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > > > > miniCParse:arguments/2 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > undefined:{}/1 +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCParse:function/3 +> > > > > > > miniCParse:parenthesized/1 +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:numberToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:numberToken/1 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCParse:parenthesized/1 +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > miniCParse:variableInstance/1 +> > > > > > > miniCParse:variableName/1 +> > > > > > > > miniCParse:alphanumericToken/1 +> > > > > > > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > > > builtin:[]/0 +> > > > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > > > miniCParse:token/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > > > > miniCParse:variableName/1 ***** looping ***** +> > > > > miniCParse:arithmeticTerm/2 ***** looping ***** +> > > > > miniCParse:arithmeticTerm/3 ***** looping ***** +> > > > > miniCParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > undefined:{}/1 +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > undefined:{}/1 +> > > miniCParse:punctuationToken/1 +> > > > builtin:./2 +> > > > miniCParse:comments/0 +> > > > > builtin:[]/0 +> > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:miniCTokens/1 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > miniCParse:token/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > undefined:{}/1 +> miniCParse:function/2 +> > miniCParse:function/3 +> > > miniCParse:parenthesized/1 +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > builtin:./2 +> > > > miniCParse:comments/0 +> > > > > builtin:[]/0 +> > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:miniCTokens/1 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > miniCParse:token/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > undefined:{}/1 +> miniCParse:function/3 +> > miniCParse:parenthesized/1 +> > > miniCParse:punctuationToken/1 +> > > > builtin:./2 +> > > > miniCParse:comments/0 +> > > > > builtin:[]/0 +> > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:miniCTokens/1 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > miniCParse:token/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > miniCParse:uncapitalizedAlphanumericToken/1 +> > > builtin:./2 +> > > miniCParse:comments/0 +> > > > builtin:[]/0 +> > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:miniCTokens/1 +> > > > > builtin:[]/0 +> > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > miniCParse:token/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 ***** looping ***** +> miniCParse:punctuationToken/1 +> > builtin:./2 +> > miniCParse:comments/0 +> > > builtin:[]/0 +> > > miniCParse:comments/0 ***** looping ***** +> > > miniCParse:miniCTokens/1 +> > > > builtin:[]/0 +> > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > miniCParse:token/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 ***** looping ***** +> > > miniCParse:punctuationToken/1 ***** looping ***** +> miniCParse:variableInstance/1 +> > miniCParse:variableName/1 +> > > miniCParse:alphanumericToken/1 +> > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > miniCParse:punctuationToken/1 +> > > > builtin:./2 +> > > > miniCParse:comments/0 +> > > > > builtin:[]/0 +> > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:miniCTokens/1 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > miniCParse:token/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > miniCParse:variableName/1 ***** looping ***** +> undefined:{}/1 + +----- Going Down miniCParse:switchToSetInstance/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +miniCParse.pro 209:213 + +miniCParse:switchToSetInstance/2 uses: + +----- Going Down miniCParse:caseStatements/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +miniCParse.pro 213:216 + +miniCParse:caseStatements/2 uses: +> miniCParse:curlyBracketed/1 +> > miniCParse:punctuationToken/1 +> > > builtin:./2 +> > > miniCParse:comments/0 +> > > > builtin:[]/0 +> > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:miniCTokens/1 +> > > > > builtin:[]/0 +> > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > miniCParse:token/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:punctuationToken/1 ***** looping ***** +> miniCParse:statements/2 +> > miniCParse:(-)/2 +> > > miniCParse:curlyBracketed/1 +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > miniCParse:dataType/1 +> > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > undefined:{}/1 +> > > miniCParse:functionDeclaration/2 +> > > > miniCParse:parenthesized/1 +> > > > > miniCParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > miniCParse:parseCheckpoint/0 +> > > > miniCParse:(-)/2 ***** looping ***** +> > > > builtin:[]/0 +> > > > undefined:{}/1 +> > > undefined:{}/1 +> > builtin:[]/0 +> > miniCParse:controlStatement/2 +> > > miniCParse:(-)/2 +> > > > miniCParse:curlyBracketed/1 +> > > > > miniCParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > miniCParse:dataType/1 +> > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > undefined:{}/1 +> > > > miniCParse:functionDeclaration/2 +> > > > > miniCParse:parenthesized/1 +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:parseCheckpoint/0 +> > > > > miniCParse:(-)/2 ***** looping ***** +> > > > > builtin:[]/0 +> > > > > undefined:{}/1 +> > > > undefined:{}/1 +> > > miniCParse:alphanumericToken/1 +> > > > miniCParse:capitalizedAlphanumericToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:miniCTokens/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > miniCParse:token/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > undefined:{}/1 +> > undefined:multilineComment/0 +> > miniCParse:parseCheckpoint/0 +> > > miniCParse:(-)/2 +> > > > miniCParse:curlyBracketed/1 +> > > > > miniCParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > miniCParse:dataType/1 +> > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > undefined:{}/1 +> > > > miniCParse:functionDeclaration/2 +> > > > > miniCParse:parenthesized/1 +> > > > > > miniCParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > > builtin:[]/0 +> > > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > > miniCParse:token/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > > > > miniCParse:uncapitalizedAlphanumericToken/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 +> > > > > > > builtin:[]/0 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:miniCTokens/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > > > miniCParse:token/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > > > miniCParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:parseCheckpoint/0 ***** looping ***** +> > > > undefined:{}/1 +> > > builtin:[]/0 +> > > undefined:{}/1 +> > miniCParse:statements/2 ***** looping ***** +> > undefined:{}/1 +> undefined:{}/1 + +----- Going Down miniCParse:functionDeclaration/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +miniCParse.pro 228:233 + +miniCParse:functionDeclaration/1 uses: +> miniCParse:functionDeclaration/2 +> > miniCParse:parenthesized/1 +> > > miniCParse:punctuationToken/1 +> > > > builtin:./2 +> > > > miniCParse:comments/0 +> > > > > builtin:[]/0 +> > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:miniCTokens/1 +> > > > > > builtin:[]/0 +> > > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > > miniCParse:token/1 +> > > > > > > builtin:./2 +> > > > > > > miniCParse:comments/0 ***** looping ***** +> > > > > miniCParse:punctuationToken/1 ***** looping ***** +> > miniCParse:uncapitalizedAlphanumericToken/1 +> > > builtin:./2 +> > > miniCParse:comments/0 +> > > > builtin:[]/0 +> > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:miniCTokens/1 +> > > > > builtin:[]/0 +> > > > > miniCParse:miniCTokens/1 ***** looping ***** +> > > > > miniCParse:token/1 +> > > > > > builtin:./2 +> > > > > > miniCParse:comments/0 ***** looping ***** +> > > > miniCParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > > miniCParse:comments/0 ***** looping ***** +> undefined:{}/1 + +----- Going Down miniCParse:typedArguments/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +miniCParse.pro 246:249 + +miniCParse:typedArguments/1 uses: +> miniCParse:pluralized/4 +> > builtin:[]/0 +> > miniCParse:pluralized/3 +> > > builtin:[]/0 +> > > miniCParse:pluralized/3 ***** looping ***** +> > > undefined:{}/1 +> > undefined:{}/1 + +----- Going Down miniCParse:processSource/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +miniCParse.pro 495:504 + +miniCParse:processSource/2 uses: +> builtin:(\+)/1 +> builtin:append/3 +> builtin:atom_codes/2 + +----- Going Down miniCParse:substringException/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCParse.pro +miniCParse.pro 507:513 + +miniCParse:substringException/2 uses: +> builtin: = /2 +> miniCParse:changeToSetList/3 +> > builtin: = /2 +> > miniCParse:changeToSetList/3 ***** looping ***** +> > lists:reverse/2 + +----- Going Down miniCobolParse:definitions/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +miniCobolParse.pro 23:38 + +miniCobolParse:definitions/1 uses: +> miniCobolParse:dataDiv/4 +> > miniCobolParse:alphanumericToken/1 +> > > builtin:./2 +> > miniCobolParse:fileSection/4 +> > > builtin:[]/0 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > > miniCobolParse:fileDirectories/4 +> > > > builtin:[]/0 +> > > > miniCobolParse:fileDirectories/4 ***** looping ***** +> > > > miniCobolParse:fileDirectory/4 +> > > > > miniCobolParse:alphanumericToken/1 +> > > > > > builtin:./2 +> > > > > miniCobolParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > miniCobolParse:workingStorageStatement/3 +> > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > > miniCobolParse:numberToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > undefined:{}/1 +> > > > > > miniCobolParse:pictureClause/1 +> > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > > miniCobolParse:pictureType/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > miniCobolParse:numberToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > undefined:{}/1 +> > > > > > > > miniCobolParse:pictureType/1 ***** looping ***** +> > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > miniCobolParse:variableInstance/1 +> > > > > > > miniCobolParse:variableName/1 +> > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > undefined:{}/1 +> > > > > > miniCobolParse:workingStorageStatements/3 +> > > > > > > builtin:[]/0 +> > > > > > > miniCobolParse:parseCheckpoint/0 +> > > > > > > > miniCobolParse:(-)/2 +> > > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > miniCobolParse:paragraphs/3 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > undefined:paragraph/3 +> > > > > > > > > > miniCobolParse:paragraphs/3 ***** looping ***** +> > > > > > > > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > > > > > > > undefined:{}/1 +> > > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > miniCobolParse:sections/3 +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > > > > > > > undefined:section/3 +> > > > > > > > > > miniCobolParse:sections/3 ***** looping ***** +> > > > > > > > > > undefined:{}/1 +> > > > > > > > > miniCobolParse:statements/3 +> > > > > > > > > > miniCobolParse:(-)/2 ***** looping ***** +> > > > > > > > > > builtin:[]/0 +> > > > > > > > > > miniCobolParse:controlStatement/3 +> > > > > > > > > > > miniCobolParse:(-)/2 ***** looping ***** +> > > > > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > > undefined:{}/1 +> > > > > > > > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > undefined:statement/1 +> > > > > > > > > > miniCobolParse:statements/3 ***** looping ***** +> > > > > > > > > > undefined:{}/1 +> > > > > > > > > undefined:{}/1 +> > > > > > > > builtin:[]/0 +> > > > > > > > undefined:{}/1 +> > > > > > > miniCobolParse:workingStorageStatement/3 ***** looping ***** +> > > > > > > miniCobolParse:workingStorageStatements/3 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > undefined:{}/1 +> > > > > undefined:{}/1 +> > > > miniCobolParse:parseCheckpoint/0 +> > > > > miniCobolParse:(-)/2 +> > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > > miniCobolParse:paragraphs/3 +> > > > > > > builtin:[]/0 +> > > > > > > undefined:paragraph/3 +> > > > > > > miniCobolParse:paragraphs/3 ***** looping ***** +> > > > > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > miniCobolParse:sections/3 +> > > > > > > builtin:[]/0 +> > > > > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > > > > undefined:section/3 +> > > > > > > miniCobolParse:sections/3 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCobolParse:statements/3 +> > > > > > > miniCobolParse:(-)/2 ***** looping ***** +> > > > > > > builtin:[]/0 +> > > > > > > miniCobolParse:controlStatement/3 +> > > > > > > > miniCobolParse:(-)/2 ***** looping ***** +> > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > undefined:{}/1 +> > > > > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > undefined:statement/1 +> > > > > > > miniCobolParse:statements/3 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > undefined:{}/1 +> > > > > builtin:[]/0 +> > > > > undefined:{}/1 +> > > > undefined:{}/1 +> > > miniCobolParse:punctuationToken/1 +> > > > builtin:./2 +> > miniCobolParse:punctuationToken/1 +> > > builtin:./2 +> > miniCobolParse:whiteSpaceToken/1 +> > > builtin:./2 +> > > builtin:[]/0 +> > miniCobolParse:workingStorageSec/2 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > > miniCobolParse:punctuationToken/1 +> > > > builtin:./2 +> > > miniCobolParse:whiteSpaceToken/1 +> > > > builtin:./2 +> > > > builtin:[]/0 +> > > miniCobolParse:workingStorageStatements/3 +> > > > builtin:[]/0 +> > > > miniCobolParse:parseCheckpoint/0 +> > > > > miniCobolParse:(-)/2 +> > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > > miniCobolParse:paragraphs/3 +> > > > > > > builtin:[]/0 +> > > > > > > undefined:paragraph/3 +> > > > > > > miniCobolParse:paragraphs/3 ***** looping ***** +> > > > > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > miniCobolParse:sections/3 +> > > > > > > builtin:[]/0 +> > > > > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > > > > undefined:section/3 +> > > > > > > miniCobolParse:sections/3 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCobolParse:statements/3 +> > > > > > > miniCobolParse:(-)/2 ***** looping ***** +> > > > > > > builtin:[]/0 +> > > > > > > miniCobolParse:controlStatement/3 +> > > > > > > > miniCobolParse:(-)/2 ***** looping ***** +> > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > undefined:{}/1 +> > > > > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > undefined:statement/1 +> > > > > > > miniCobolParse:statements/3 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > undefined:{}/1 +> > > > > builtin:[]/0 +> > > > > undefined:{}/1 +> > > > miniCobolParse:workingStorageStatement/3 +> > > > > miniCobolParse:alphanumericToken/1 +> > > > > > builtin:./2 +> > > > > miniCobolParse:numberToken/1 +> > > > > > builtin:./2 +> > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > undefined:{}/1 +> > > > > miniCobolParse:pictureClause/1 +> > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > > miniCobolParse:pictureType/1 +> > > > > > > builtin:[]/0 +> > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > > miniCobolParse:numberToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > undefined:{}/1 +> > > > > > > miniCobolParse:pictureType/1 ***** looping ***** +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > miniCobolParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > miniCobolParse:variableInstance/1 +> > > > > > miniCobolParse:variableName/1 +> > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > undefined:{}/1 +> > > > > miniCobolParse:workingStorageStatements/3 ***** looping ***** +> > > > > undefined:{}/1 +> > > > miniCobolParse:workingStorageStatements/3 ***** looping ***** +> > > > undefined:{}/1 +> > > undefined:{}/1 +> > undefined:{}/1 +> miniCobolParse:environmentDiv/3 +> > miniCobolParse:alphanumericToken/1 +> > > builtin:./2 +> > miniCobolParse:configurationSec/2 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > > miniCobolParse:punctuationToken/1 +> > > > builtin:./2 +> > > miniCobolParse:whiteSpaceToken/1 +> > > > builtin:./2 +> > > > builtin:[]/0 +> > miniCobolParse:inputOutputSec/1 +> > > builtin:[]/0 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > > miniCobolParse:fileControls/1 +> > > > builtin:[]/0 +> > > > miniCobolParse:fileControl/1 +> > > > > miniCobolParse:alphanumericToken/1 +> > > > > > builtin:./2 +> > > > > miniCobolParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > miniCobolParse:stringToken/1 +> > > > > > builtin:./2 +> > > > miniCobolParse:fileControls/1 ***** looping ***** +> > > > miniCobolParse:parseCheckpoint/0 +> > > > > miniCobolParse:(-)/2 +> > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > > miniCobolParse:paragraphs/3 +> > > > > > > builtin:[]/0 +> > > > > > > undefined:paragraph/3 +> > > > > > > miniCobolParse:paragraphs/3 ***** looping ***** +> > > > > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > miniCobolParse:sections/3 +> > > > > > > builtin:[]/0 +> > > > > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > > > > undefined:section/3 +> > > > > > > miniCobolParse:sections/3 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > miniCobolParse:statements/3 +> > > > > > > miniCobolParse:(-)/2 ***** looping ***** +> > > > > > > builtin:[]/0 +> > > > > > > miniCobolParse:controlStatement/3 +> > > > > > > > miniCobolParse:(-)/2 ***** looping ***** +> > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > undefined:{}/1 +> > > > > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > undefined:statement/1 +> > > > > > > miniCobolParse:statements/3 ***** looping ***** +> > > > > > > undefined:{}/1 +> > > > > > undefined:{}/1 +> > > > > builtin:[]/0 +> > > > > undefined:{}/1 +> > > miniCobolParse:punctuationToken/1 +> > > > builtin:./2 +> > miniCobolParse:punctuationToken/1 +> > > builtin:./2 +> > miniCobolParse:whiteSpaceToken/1 +> > > builtin:./2 +> > > builtin:[]/0 +> miniCobolParse:identificationDiv/1 +> > miniCobolParse:alphanumericToken/1 +> > > builtin:./2 +> > miniCobolParse:programId/1 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > > miniCobolParse:punctuationToken/1 +> > > > builtin:./2 +> > > miniCobolParse:whiteSpaceToken/1 +> > > > builtin:./2 +> > > > builtin:[]/0 +> > miniCobolParse:punctuationToken/1 +> > > builtin:./2 +> > miniCobolParse:whiteSpaceToken/1 +> > > builtin:./2 +> > > builtin:[]/0 +> miniCobolParse:parseCheckpoint/0 +> > miniCobolParse:(-)/2 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > > miniCobolParse:paragraphs/3 +> > > > builtin:[]/0 +> > > > undefined:paragraph/3 +> > > > miniCobolParse:paragraphs/3 ***** looping ***** +> > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > undefined:{}/1 +> > > miniCobolParse:punctuationToken/1 +> > > > builtin:./2 +> > > miniCobolParse:sections/3 +> > > > builtin:[]/0 +> > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > undefined:section/3 +> > > > miniCobolParse:sections/3 ***** looping ***** +> > > > undefined:{}/1 +> > > miniCobolParse:statements/3 +> > > > miniCobolParse:(-)/2 ***** looping ***** +> > > > builtin:[]/0 +> > > > miniCobolParse:controlStatement/3 +> > > > > miniCobolParse:(-)/2 ***** looping ***** +> > > > > miniCobolParse:alphanumericToken/1 +> > > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > > miniCobolParse:parseCheckpoint/0 ***** looping ***** +> > > > miniCobolParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > undefined:statement/1 +> > > > miniCobolParse:statements/3 ***** looping ***** +> > > > undefined:{}/1 +> > > undefined:{}/1 +> > builtin:[]/0 +> > undefined:{}/1 +> miniCobolParse:procedureDiv/3 +> > miniCobolParse:alphanumericToken/1 +> > > builtin:./2 +> > miniCobolParse:procedureDivArgs/1 +> > > builtin:[]/0 +> > > miniCobolParse:procedureDivArg/1 +> > > > miniCobolParse:alphanumericToken/1 +> > > > > builtin:./2 +> > > miniCobolParse:procedureDivArgs/1 ***** looping ***** +> > undefined:procedureDivBody/4 +> > miniCobolParse:punctuationToken/1 +> > > builtin:./2 +> > miniCobolParse:whiteSpaceToken/1 +> > > builtin:./2 +> > > builtin:[]/0 +> > undefined:{}/1 + +----- Going Down miniCobolParse:statement/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +miniCobolParse.pro 286:306 + +miniCobolParse:statement/2 uses: +> builtin: = /2 +> miniCobolParse:alphanumericToken/1 +> > builtin:./2 +> miniCobolParse:argument/1 +> > miniCobolParse:numberToken/1 +> > > builtin:./2 +> > > miniCobolParse:numberToken/1 ***** looping ***** +> > > miniCobolParse:punctuationToken/1 +> > > > builtin:./2 +> > > undefined:{}/1 +> > miniCobolParse:stringToken/1 +> > > builtin:./2 +> > miniCobolParse:variableInstance/1 +> > > miniCobolParse:variableName/1 +> > > > miniCobolParse:alphanumericToken/1 +> > > > > builtin:./2 +> > > undefined:{}/1 +> miniCobolParse:arguments/1 +> > builtin:[]/0 +> > miniCobolParse:argument/1 +> > > miniCobolParse:numberToken/1 +> > > > builtin:./2 +> > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > miniCobolParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > undefined:{}/1 +> > > miniCobolParse:stringToken/1 +> > > > builtin:./2 +> > > miniCobolParse:variableInstance/1 +> > > > miniCobolParse:variableName/1 +> > > > > miniCobolParse:alphanumericToken/1 +> > > > > > builtin:./2 +> > > > undefined:{}/1 +> > miniCobolParse:arguments/1 ***** looping ***** +> miniCobolParse:assignmentStatement/1 +> > miniCobolParse:addTo/1 +> > > miniCobolParse:addedNumbers/1 +> > > > miniCobolParse:addedNumbers/1 ***** looping ***** +> > > > miniCobolParse:numberOrVariable/1 +> > > > > miniCobolParse:numberToken/1 +> > > > > > builtin:./2 +> > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > undefined:{}/1 +> > > > > miniCobolParse:variableInstance/1 +> > > > > > miniCobolParse:variableName/1 +> > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > undefined:{}/1 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > > miniCobolParse:numberOrVariable/1 +> > > > miniCobolParse:numberToken/1 +> > > > > builtin:./2 +> > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > miniCobolParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > > miniCobolParse:variableInstance/1 +> > > > > miniCobolParse:variableName/1 +> > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > miniCobolParse:variableInstance/1 +> > > > miniCobolParse:variableName/1 +> > > > > miniCobolParse:alphanumericToken/1 +> > > > > > builtin:./2 +> > > > undefined:{}/1 +> > miniCobolParse:compute/1 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > > miniCobolParse:arithmeticExpression/1 +> > > > miniCobolParse:arithmeticExpression/1 ***** looping ***** +> > > > miniCobolParse:arithmeticExpression/2 +> > > > > miniCobolParse:arithmeticExpression/1 ***** looping ***** +> > > > > miniCobolParse:arithmeticExpression/2 ***** looping ***** +> > > > > miniCobolParse:arithmeticTerm/1 +> > > > > > miniCobolParse:arithmeticFactor/1 +> > > > > > > miniCobolParse:arithmeticFactor/1 ***** looping ***** +> > > > > > > miniCobolParse:numberToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > undefined:{}/1 +> > > > > > > miniCobolParse:parenthesized/1 +> > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > miniCobolParse:variableInstance/1 +> > > > > > > > miniCobolParse:variableName/1 +> > > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > undefined:{}/1 +> > > > > > miniCobolParse:arithmeticTerm/1 ***** looping ***** +> > > > > > miniCobolParse:arithmeticTerm/2 +> > > > > > > miniCobolParse:arithmeticFactor/1 +> > > > > > > > miniCobolParse:arithmeticFactor/1 ***** looping ***** +> > > > > > > > miniCobolParse:numberToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > undefined:{}/1 +> > > > > > > > miniCobolParse:parenthesized/1 +> > > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > miniCobolParse:variableInstance/1 +> > > > > > > > > miniCobolParse:variableName/1 +> > > > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > undefined:{}/1 +> > > > > > > miniCobolParse:arithmeticTerm/1 ***** looping ***** +> > > > > > > miniCobolParse:arithmeticTerm/2 ***** looping ***** +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > miniCobolParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > miniCobolParse:arithmeticFactor/1 +> > > > > miniCobolParse:arithmeticFactor/1 ***** looping ***** +> > > > > miniCobolParse:numberToken/1 +> > > > > > builtin:./2 +> > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > undefined:{}/1 +> > > > > miniCobolParse:parenthesized/1 +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > miniCobolParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > miniCobolParse:variableInstance/1 +> > > > > > miniCobolParse:variableName/1 +> > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > undefined:{}/1 +> > > > miniCobolParse:arithmeticTerm/1 +> > > > > miniCobolParse:arithmeticFactor/1 +> > > > > > miniCobolParse:arithmeticFactor/1 ***** looping ***** +> > > > > > miniCobolParse:numberToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > undefined:{}/1 +> > > > > > miniCobolParse:parenthesized/1 +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > miniCobolParse:variableInstance/1 +> > > > > > > miniCobolParse:variableName/1 +> > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > undefined:{}/1 +> > > > > miniCobolParse:arithmeticTerm/1 ***** looping ***** +> > > > > miniCobolParse:arithmeticTerm/2 +> > > > > > miniCobolParse:arithmeticFactor/1 +> > > > > > > miniCobolParse:arithmeticFactor/1 ***** looping ***** +> > > > > > > miniCobolParse:numberToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > undefined:{}/1 +> > > > > > > miniCobolParse:parenthesized/1 +> > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > miniCobolParse:variableInstance/1 +> > > > > > > > miniCobolParse:variableName/1 +> > > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > undefined:{}/1 +> > > > > > miniCobolParse:arithmeticTerm/1 ***** looping ***** +> > > > > > miniCobolParse:arithmeticTerm/2 ***** looping ***** +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > miniCobolParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > miniCobolParse:punctuationToken/1 +> > > > > builtin:./2 +> > > miniCobolParse:punctuationToken/1 +> > > > builtin:./2 +> > > miniCobolParse:variableInstance/1 +> > > > miniCobolParse:variableName/1 +> > > > > miniCobolParse:alphanumericToken/1 +> > > > > > builtin:./2 +> > > > undefined:{}/1 +> > miniCobolParse:divideInto/1 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > > miniCobolParse:numberOrVariable/1 +> > > > miniCobolParse:numberToken/1 +> > > > > builtin:./2 +> > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > miniCobolParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > > miniCobolParse:variableInstance/1 +> > > > > miniCobolParse:variableName/1 +> > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > miniCobolParse:variableInstance/1 +> > > > miniCobolParse:variableName/1 +> > > > > miniCobolParse:alphanumericToken/1 +> > > > > > builtin:./2 +> > > > undefined:{}/1 +> > miniCobolParse:move/1 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > > miniCobolParse:argument/1 +> > > > miniCobolParse:numberToken/1 +> > > > > builtin:./2 +> > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > miniCobolParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > > miniCobolParse:stringToken/1 +> > > > > builtin:./2 +> > > > miniCobolParse:variableInstance/1 +> > > > > miniCobolParse:variableName/1 +> > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > miniCobolParse:variableInstance/1 +> > > > miniCobolParse:variableName/1 +> > > > > miniCobolParse:alphanumericToken/1 +> > > > > > builtin:./2 +> > > > undefined:{}/1 +> > miniCobolParse:multiplyBy/1 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > > miniCobolParse:numberOrVariable/1 +> > > > miniCobolParse:numberToken/1 +> > > > > builtin:./2 +> > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > miniCobolParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > > miniCobolParse:variableInstance/1 +> > > > > miniCobolParse:variableName/1 +> > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > miniCobolParse:variableInstance/1 +> > > > miniCobolParse:variableName/1 +> > > > > miniCobolParse:alphanumericToken/1 +> > > > > > builtin:./2 +> > > > undefined:{}/1 +> > miniCobolParse:subtractFrom/1 +> > > miniCobolParse:addedNumbers/1 +> > > > miniCobolParse:addedNumbers/1 ***** looping ***** +> > > > miniCobolParse:numberOrVariable/1 +> > > > > miniCobolParse:numberToken/1 +> > > > > > builtin:./2 +> > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > undefined:{}/1 +> > > > > miniCobolParse:variableInstance/1 +> > > > > > miniCobolParse:variableName/1 +> > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > undefined:{}/1 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > > miniCobolParse:numberOrVariable/1 +> > > > miniCobolParse:numberToken/1 +> > > > > builtin:./2 +> > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > miniCobolParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > > miniCobolParse:variableInstance/1 +> > > > > miniCobolParse:variableName/1 +> > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > builtin:./2 +> > > > > undefined:{}/1 +> > > miniCobolParse:variableInstance/1 +> > > > miniCobolParse:variableName/1 +> > > > > miniCobolParse:alphanumericToken/1 +> > > > > > builtin:./2 +> > > > undefined:{}/1 +> miniCobolParse:conditionalExpression/1 +> > miniCobolParse:alphanumericToken/1 +> > > builtin:./2 +> > miniCobolParse:conditionalExpression/1 ***** looping ***** +> > miniCobolParse:conditionalTerm/1 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > > miniCobolParse:conditionalFactor/1 +> > > > miniCobolParse:alphanumericToken/1 +> > > > > builtin:./2 +> > > > miniCobolParse:arithmeticExpression/1 +> > > > > miniCobolParse:arithmeticExpression/1 ***** looping ***** +> > > > > miniCobolParse:arithmeticExpression/2 +> > > > > > miniCobolParse:arithmeticExpression/1 ***** looping ***** +> > > > > > miniCobolParse:arithmeticExpression/2 ***** looping ***** +> > > > > > miniCobolParse:arithmeticTerm/1 +> > > > > > > miniCobolParse:arithmeticFactor/1 +> > > > > > > > miniCobolParse:arithmeticFactor/1 ***** looping ***** +> > > > > > > > miniCobolParse:numberToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > undefined:{}/1 +> > > > > > > > miniCobolParse:parenthesized/1 +> > > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > miniCobolParse:variableInstance/1 +> > > > > > > > > miniCobolParse:variableName/1 +> > > > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > undefined:{}/1 +> > > > > > > miniCobolParse:arithmeticTerm/1 ***** looping ***** +> > > > > > > miniCobolParse:arithmeticTerm/2 +> > > > > > > > miniCobolParse:arithmeticFactor/1 +> > > > > > > > > miniCobolParse:arithmeticFactor/1 ***** looping ***** +> > > > > > > > > miniCobolParse:numberToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > > undefined:{}/1 +> > > > > > > > > miniCobolParse:parenthesized/1 +> > > > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > miniCobolParse:variableInstance/1 +> > > > > > > > > > miniCobolParse:variableName/1 +> > > > > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > > > > builtin:./2 +> > > > > > > > > > undefined:{}/1 +> > > > > > > > miniCobolParse:arithmeticTerm/1 ***** looping ***** +> > > > > > > > miniCobolParse:arithmeticTerm/2 ***** looping ***** +> > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > miniCobolParse:arithmeticFactor/1 +> > > > > > miniCobolParse:arithmeticFactor/1 ***** looping ***** +> > > > > > miniCobolParse:numberToken/1 +> > > > > > > builtin:./2 +> > > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > undefined:{}/1 +> > > > > > miniCobolParse:parenthesized/1 +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > > miniCobolParse:variableInstance/1 +> > > > > > > miniCobolParse:variableName/1 +> > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > undefined:{}/1 +> > > > > miniCobolParse:arithmeticTerm/1 +> > > > > > miniCobolParse:arithmeticFactor/1 +> > > > > > > miniCobolParse:arithmeticFactor/1 ***** looping ***** +> > > > > > > miniCobolParse:numberToken/1 +> > > > > > > > builtin:./2 +> > > > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > undefined:{}/1 +> > > > > > > miniCobolParse:parenthesized/1 +> > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > > miniCobolParse:variableInstance/1 +> > > > > > > > miniCobolParse:variableName/1 +> > > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > undefined:{}/1 +> > > > > > miniCobolParse:arithmeticTerm/1 ***** looping ***** +> > > > > > miniCobolParse:arithmeticTerm/2 +> > > > > > > miniCobolParse:arithmeticFactor/1 +> > > > > > > > miniCobolParse:arithmeticFactor/1 ***** looping ***** +> > > > > > > > miniCobolParse:numberToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > > undefined:{}/1 +> > > > > > > > miniCobolParse:parenthesized/1 +> > > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > > builtin:./2 +> > > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > > builtin:./2 +> > > > > > > > miniCobolParse:variableInstance/1 +> > > > > > > > > miniCobolParse:variableName/1 +> > > > > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > > > > builtin:./2 +> > > > > > > > > undefined:{}/1 +> > > > > > > miniCobolParse:arithmeticTerm/1 ***** looping ***** +> > > > > > > miniCobolParse:arithmeticTerm/2 ***** looping ***** +> > > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > > builtin:./2 +> > > > > > miniCobolParse:punctuationToken/1 +> > > > > > > builtin:./2 +> > > > > miniCobolParse:punctuationToken/1 +> > > > > > builtin:./2 +> > > > miniCobolParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > miniCobolParse:stringOrVariable/1 +> > > > > miniCobolParse:stringToken/1 +> > > > > > builtin:./2 +> > > > > miniCobolParse:variableInstance/1 +> > > > > > miniCobolParse:variableName/1 +> > > > > > > miniCobolParse:alphanumericToken/1 +> > > > > > > > builtin:./2 +> > > > > > undefined:{}/1 +> > > miniCobolParse:conditionalTerm/1 ***** looping ***** +> miniCobolParse:outputArguments/1 +> > builtin:[]/0 +> > miniCobolParse:outputArgument/1 +> > > miniCobolParse:numberToken/1 +> > > > builtin:./2 +> > > > miniCobolParse:numberToken/1 ***** looping ***** +> > > > miniCobolParse:punctuationToken/1 +> > > > > builtin:./2 +> > > > undefined:{}/1 +> > > miniCobolParse:stringToken/1 +> > > > builtin:./2 +> > > miniCobolParse:variableInstance/1 +> > > > miniCobolParse:variableName/1 +> > > > > miniCobolParse:alphanumericToken/1 +> > > > > > builtin:./2 +> > > > undefined:{}/1 +> > > undefined:{}/1 +> > miniCobolParse:outputArguments/1 ***** looping ***** +> miniCobolParse:stringToken/1 +> > builtin:./2 +> miniCobolParse:varInArguments/1 +> > builtin:[]/0 +> > miniCobolParse:varInArgument/1 +> > > miniCobolParse:variableInstance/1 +> > > > miniCobolParse:variableName/1 +> > > > > miniCobolParse:alphanumericToken/1 +> > > > > > builtin:./2 +> > > > undefined:{}/1 +> > > undefined:{}/1 +> > miniCobolParse:varInArguments/1 ***** looping ***** +> miniCobolParse:varOutArguments/2 +> > builtin:[]/0 +> > miniCobolParse:varOutArgument/2 +> > > undefined:{}/1 +> > miniCobolParse:varOutArguments/2 ***** looping ***** +> miniCobolParse:variableInstance/1 +> > miniCobolParse:variableName/1 +> > > miniCobolParse:alphanumericToken/1 +> > > > builtin:./2 +> > undefined:{}/1 +> undefined:{}/1 + +----- Going Down miniCobolParse:equalsSetInstance/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +miniCobolParse.pro 593:597 + +miniCobolParse:equalsSetInstance/1 uses: +> builtin: = /2 + +----- Going Down miniCobolParse:switchToSetInstance/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +miniCobolParse.pro 597:599 + +miniCobolParse:switchToSetInstance/2 uses: + +----- Going Down miniCobolParse:condtionalFactor/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +miniCobolParse.pro 647:649 + +miniCobolParse:condtionalFactor/1 uses: +> miniCobolParse:alphanumericToken/1 +> > builtin:./2 +> miniCobolParse:stringOrVariable/1 +> > miniCobolParse:stringToken/1 +> > > builtin:./2 +> > miniCobolParse:variableInstance/1 +> > > miniCobolParse:variableName/1 +> > > > miniCobolParse:alphanumericToken/1 +> > > > > builtin:./2 +> > > undefined:{}/1 + +----- Going Down miniCobolParse:curlyBracketed/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +miniCobolParse.pro 803:806 + +miniCobolParse:curlyBracketed/1 uses: +> miniCobolParse:punctuationToken/1 +> > builtin:./2 + +----- Going Down miniCobolParse:pluralized/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +miniCobolParse.pro 817:820 + +miniCobolParse:pluralized/4 uses: +> builtin:[]/0 +> miniCobolParse:pluralized/3 +> > builtin:[]/0 +> > miniCobolParse:pluralized/3 ***** looping ***** +> > undefined:{}/1 +> undefined:{}/1 + +----- Going Down miniCobolParse:optional/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +miniCobolParse.pro 822:825 + +miniCobolParse:optional/1 uses: +> builtin:[]/0 + +----- Going Down miniCobolParse:uncapitalizedAlphanumericToken/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +miniCobolParse.pro 845:847 + +miniCobolParse:uncapitalizedAlphanumericToken/1 uses: +> builtin:./2 + +----- Going Down miniCobolParse:processSource/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/miniCobolParse.pro +miniCobolParse.pro 867:873 + +miniCobolParse:processSource/2 uses: +> builtin:(\+)/1 +> builtin:append/3 +> builtin:atom_codes/2 + +----- Going Down executeMiniProgram:parseMiniC/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +generateSemanticFacts.pro 46:51 + +executeMiniProgram:parseMiniC/2 uses: +> miniCParse:getFileDefinitionsC/2 +> > undefined:definitions/3 +> > tokenize:tokens/3 +> > > tokenize:fileTokens/2 +> > > > builtin:[]/0 +> > > > builtin:append/3 +> > > > tokenize:fileTokens/2 ***** looping ***** +> > > > undefined:fullLineTokens/3 +> > > taggedParsing:tagLines/2 +> > > > taggedParsing:tagLines/3 +> > > > > taggedParsing:tagLines/4 +> > > > > > builtin:is/2 +> > > > > > taggedParsing:tagLines/4 ***** looping ***** +> > > assert-tokenize:language/1 +> > > retract-tokenize:language/1 +> log:log/2 +> > log:log/3 +> > > builtin: =< /2 +> > > log:getLogLevel/1 +> > > > log:get_flag/2 +> > > > > log:flag/2 +> > > log:logType_logLevel/2 +> > > > builtin:number/1 +> > > builtin:nl/0 +> > > log:timestamp/1 +> > > > builtin:atom_concat/3 +> > > > undefined:datime/1 +> > > > log:number_formattedAtom/2 +> > > > > builtin:atom_chars/2 +> > > > > log:formatChars/2 +> > > > > builtin:number_chars/2 +> > > builtin:write/1 +> builtin:nl/0 + +----- Going Down executeMiniProgram:parseMiniCobol/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +generateSemanticFacts.pro 51:55 + +executeMiniProgram:parseMiniCobol/2 uses: +> miniCobolParse:getFileDefinitionsCobol/2 +> > undefined:definitions/3 +> > tokenize:tokens/3 +> > > tokenize:fileTokens/2 +> > > > builtin:[]/0 +> > > > builtin:append/3 +> > > > tokenize:fileTokens/2 ***** looping ***** +> > > > undefined:fullLineTokens/3 +> > > taggedParsing:tagLines/2 +> > > > taggedParsing:tagLines/3 +> > > > > taggedParsing:tagLines/4 +> > > > > > builtin:is/2 +> > > > > > taggedParsing:tagLines/4 ***** looping ***** +> > > assert-tokenize:language/1 +> > > retract-tokenize:language/1 +> log:log/2 +> > log:log/3 +> > > builtin: =< /2 +> > > log:getLogLevel/1 +> > > > log:get_flag/2 +> > > > > log:flag/2 +> > > log:logType_logLevel/2 +> > > > builtin:number/1 +> > > builtin:nl/0 +> > > log:timestamp/1 +> > > > builtin:atom_concat/3 +> > > > undefined:datime/1 +> > > > log:number_formattedAtom/2 +> > > > > builtin:atom_chars/2 +> > > > > log:formatChars/2 +> > > > > builtin:number_chars/2 +> > > builtin:write/1 +> builtin:nl/0 + +----- Going Down executeMiniProgram:conditionalPostProcessing/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +generateSemanticFacts.pro 85:95 + +executeMiniProgram:conditionalPostProcessing/4 uses: +> builtin: = /2 +> lists:append/2 +> builtin:sort/2 + +----- Going Down executeMiniProgram:getFunctionNeighbors/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +generateSemanticFacts.pro 96:104 + +executeMiniProgram:getFunctionNeighbors/2 uses: +> builtin:findall/3 + +----- Going Down executeMiniProgram:getFunctionInputsOutputs/6 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +generateSemanticFacts.pro 104:118 + +executeMiniProgram:getFunctionInputsOutputs/6 uses: +> builtin: = /2 +> lists:append/2 +> executeMiniProgram:filterNonGlobals/3 +> > executeMiniProgram:filterNonGlobals/3 ***** looping ***** +> > executeMiniProgram:global/2 +> > > builtin:memberchk/2 +> builtin:findall/3 +> builtin:sort/2 + +----- Going Down executeMiniProgram:variable/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/generateSemanticFacts.pro +generateSemanticFacts.pro 118:124 + +executeMiniProgram:variable/4 uses: +> builtin:memberchk/2 + +----- Going Down dfmUtility:graphCfg/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +dfmUtility.pro 5:12 + +dfmUtility:graphCfg/1 uses: +> dfmUtility:graphCfgArcs/1 +> > builtin:,/2 +> dfmUtility:graphCfgNodes/1 +> > builtin:,/2 +> builtin:nl/0 +> builtin:write/1 + +----- Going Down dfmUtility:graphDfm/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmUtility.pro +dfmUtility.pro 49:56 + +dfmUtility:graphDfm/1 uses: +> dfmUtility:graphDfmArcs/1 +> > builtin:,/2 +> dfmUtility:graphDfmNodes/1 +> > builtin:,/2 +> builtin:nl/0 +> builtin:write/1 + +----- Going Down dfmCreate:assertDominance/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +dfmCreate.pro 520:528 + +dfmCreate:assertDominance/3 uses: +> builtin:,/2 + +----- Going Down dfmCreate:mapIfPredDominance/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +dfmCreate.pro 529:552 + +dfmCreate:mapIfPredDominance/4 uses: +> builtin:,/2 + +----- Going Down dfmCreate:retractNonGate/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +dfmCreate.pro 617:621 + +dfmCreate:retractNonGate/3 uses: +> builtin:retract/1 + +----- Going Down dfmCreate:mapPredDepedencies/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +dfmCreate.pro 660:675 + +dfmCreate:mapPredDepedencies/3 uses: +> builtin:assert/1 + +----- Going Down executeMiniProgram:(:-)/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +executeMiniProgram.pro 27:30 + +executeMiniProgram:(:-)/1 uses: + +----- Going Down executeMiniProgram:build/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +executeMiniProgram.pro 30:60 + +executeMiniProgram:build/2 uses: +> builtin:atom_codes/2 +> builtin:atom_concat/3 +> executeMiniProgram:cleanNamespace/1 +> > builtin:(\+)/1 +> > builtin:clause/2 +> > builtin:current_predicate/2 +> > builtin:retract/1 +> executeMiniProgram:fileLines/2 +> > builtin:close/1 +> > builtin:open/3 +> > executeMiniProgram:readFileLines/2 +> > > builtin:if/3 +> > > builtin:read_line/2 +> executeMiniProgram:getNameSpace/2 +> > builtin: = /2 +> > lists:append/2 +> > builtin:atom_codes/2 +> > executeMiniProgram:getNameSpace/2 ***** looping ***** +> executeMiniProgram:getSemanticFacts/3 +> > builtin: = /2 +> > executeMiniProgram:assignIds/1 +> > > executeMiniProgram:assignIds/2 +> > > > executeMiniProgram:assignIds/2 ***** looping ***** +> > > > builtin:atom_codes/2 +> > > > builtin:atom_concat/3 +> > > > builtin:is/2 +> > > > builtin:number_codes/2 +> > builtin:findall/3 +> > executeMiniProgram:functionGlobalSignature/5 +> > > builtin:findall/3 +> > > executeMiniProgram:functionCallTraversal/3 +> > > > builtin: = /2 +> > > > executeMiniProgram:functionCallTraversal/3 ***** looping ***** +> > > > executeMiniProgram:functionCallTraversalStep/3 +> > > > > executeMiniProgram:functionCallTraversalStepHelper/4 +> > > > > > builtin: = /2 +> > > > > > builtin:append/3 +> > > > > > executeMiniProgram:filterNonGlobals/3 +> > > > > > > executeMiniProgram:filterNonGlobals/3 ***** looping ***** +> > > > > > > executeMiniProgram:global/2 +> > > > > > > > builtin:memberchk/2 +> > > > > > executeMiniProgram:getNeighborsInputsOutputs/4 +> > > > > > > lists:append/2 +> > > > > > > builtin:findall/3 +> > > > > > builtin:sort/2 +> > > executeMiniProgram:getFunctionTraversalInfo/4 +> > > > builtin:findall/3 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > > builtin:sort/2 +> > builtin:if/3 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > executeMiniProgram:staticSingleAssignment/3 +> > > builtin: = /2 +> > > lists:append/2 +> > > builtin:append/3 +> > > executeMiniProgram:functionFacts/7 +> > > > builtin: = /2 +> > > > builtin:append/3 +> > > > executeMiniProgram:functionFacts/7 ***** looping ***** +> > > > executeMiniProgram:processSource/2 +> > > > > builtin:(\+)/1 +> > > > > builtin:append/3 +> > > > > builtin:atom_codes/2 +> > > > > builtin:throw/1 +> > > > executeMiniProgram:processStatement/5 +> > > > > builtin: = /2 +> > > > > builtin: =.. /2 +> > > > > executeMiniProgram:expandExternalCall/2 +> > > > > > builtin: = /2 +> > > > > > solsticeUtility:generateAtom/2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:is/2 +> > > > > > > builtin:number_codes/2 +> > > > > > > assert-solsticeUtility:atomNumber/2 +> > > > > > > retract-solsticeUtility:atomNumber/2 +> > > > > executeMiniProgram:expandFunction/4 +> > > > > > builtin: = /2 +> > > > > > solsticeUtility:generateAtom/2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:is/2 +> > > > > > > builtin:number_codes/2 +> > > > > > > assert-solsticeUtility:atomNumber/2 +> > > > > > > retract-solsticeUtility:atomNumber/2 +> > > > > > builtin:memberchk/2 +> > > > > > executeMiniProgram:setContext/3 +> > > > > > builtin:throw/1 +> > > > > executeMiniProgram:expandStructure/4 +> > > > > > builtin: = /2 +> > > > > > builtin:memberchk/2 +> > > > > > executeMiniProgram:setContext/3 +> > > > > executeMiniProgram:instanceVariable/5 +> > > > > > builtin: = /2 +> > > > > > builtin:ground/1 +> > > > > > builtin:is/2 +> > > > > > builtin:member/2 +> > > > > > builtin:memberchk/2 +> > > > > > lists:select/4 +> > > > > > lists:selectchk/3 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > > > > builtin:memberchk/2 +> > > > > executeMiniProgram:mergeVariableInstances/4 +> > > > > > builtin:memberchk/2 +> > > > > > executeMiniProgram:mergeVariableInstances/7 +> > > > > > > builtin: = /2 +> > > > > > > builtin:is/2 +> > > > > > > executeMiniProgram:mergeVariableInstances/7 ***** looping ***** +> > > > > > > lists:selectchk/3 +> > > > > > lists:selectchk/4 +> > > > > executeMiniProgram:processStatement/5 ***** looping ***** +> > > > > lists:scanlist/5 +> > > > > lists:selectchk/4 +> > > undefined:list_to_ord_set/2 +> > > builtin:memberchk/2 +> > > executeMiniProgram:processStatement/5 +> > > > builtin: = /2 +> > > > builtin: =.. /2 +> > > > executeMiniProgram:expandExternalCall/2 +> > > > > builtin: = /2 +> > > > > solsticeUtility:generateAtom/2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:atom_concat/3 +> > > > > > builtin:is/2 +> > > > > > builtin:number_codes/2 +> > > > > > assert-solsticeUtility:atomNumber/2 +> > > > > > retract-solsticeUtility:atomNumber/2 +> > > > executeMiniProgram:expandFunction/4 +> > > > > builtin: = /2 +> > > > > solsticeUtility:generateAtom/2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:atom_concat/3 +> > > > > > builtin:is/2 +> > > > > > builtin:number_codes/2 +> > > > > > assert-solsticeUtility:atomNumber/2 +> > > > > > retract-solsticeUtility:atomNumber/2 +> > > > > builtin:memberchk/2 +> > > > > executeMiniProgram:setContext/3 +> > > > > builtin:throw/1 +> > > > executeMiniProgram:expandStructure/4 +> > > > > builtin: = /2 +> > > > > builtin:memberchk/2 +> > > > > executeMiniProgram:setContext/3 +> > > > executeMiniProgram:instanceVariable/5 +> > > > > builtin: = /2 +> > > > > builtin:ground/1 +> > > > > builtin:is/2 +> > > > > builtin:member/2 +> > > > > builtin:memberchk/2 +> > > > > lists:select/4 +> > > > > lists:selectchk/3 +> > > > > lists:selectchk/4 +> > > > > builtin:throw/1 +> > > > builtin:memberchk/2 +> > > > executeMiniProgram:mergeVariableInstances/4 +> > > > > builtin:memberchk/2 +> > > > > executeMiniProgram:mergeVariableInstances/7 +> > > > > > builtin: = /2 +> > > > > > builtin:is/2 +> > > > > > executeMiniProgram:mergeVariableInstances/7 ***** looping ***** +> > > > > > lists:selectchk/3 +> > > > > lists:selectchk/4 +> > > > executeMiniProgram:processStatement/5 ***** looping ***** +> > > > lists:scanlist/5 +> > > > lists:selectchk/4 +> > > lists:select/4 +> > > executeMiniProgram:setContext/3 +> > > executeMiniProgram:staticSingleAssignment/3 ***** looping ***** +> builtin:if/3 +> executeMiniProgram:loadCfm/2 +> > builtin:assert/1 +> > executeMiniProgram:assertStmt/2 +> > > builtin:assert/1 +> executeMiniProgram:poToPro/3 +> > executeMiniProgram:addEdges/1 +> > > builtin:,/2 +> > builtin:findall/3 +> > executeMiniProgram:nlWrite/1 +> > > builtin:nl/0 +> > > builtin:write/1 +> > > builtin:writeq/1 +> > builtin:open/3 +> > builtin:sort/2 +> > builtin:tell/1 +> > builtin:told/0 +> > builtin:use_module/1 +> solsticeUtility:resetAllAtomGeneration/0 +> > builtin:retractall/1 +> builtin:save_modules/2 + +----- Going Down executeMiniProgram:build/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +executeMiniProgram.pro 60:64 + +executeMiniProgram:build/3 uses: +> executeMiniProgram:catchCall/2 +> > builtin: = /2 + +----- Going Down executeMiniProgram:buildDfm/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +executeMiniProgram.pro 64:99 + +executeMiniProgram:buildDfm/2 uses: +> builtin:atom/1 +> builtin:atom_codes/2 +> builtin:atom_concat/3 +> executeMiniProgram:cleanNamespace/1 +> > builtin:(\+)/1 +> > builtin:clause/2 +> > builtin:current_predicate/2 +> > builtin:retract/1 +> executeMiniProgram:createDfm/2 +> > builtin:assert/1 +> > dfmCreate:dfmCreate/2 +> > > builtin:,/2 +> > > dfmCreate:dfmCreateDeclarations/2 +> > > > builtin:,/2 +> > > dfmCreate:dfmCreateSignature/2 +> > > > builtin:,/2 +> > > dfmCreate:reduceToPredGateNodes/1 +> > > > builtin:findall/3 +> > > > dfmCreate:retractPredNonGateNodes/2 +> > > > > builtin:findall/3 +> > > > > undefined:list_to_ord_set/2 +> > > dfmCreate:unRollWhileLoops/2 +> > > > builtin:,/2 +> > dfmCreate:dfmCreateDomainName/2 +> > > builtin:atom_concat/3 +> executeMiniProgram:fileLines/2 +> > builtin:close/1 +> > builtin:open/3 +> > executeMiniProgram:readFileLines/2 +> > > builtin:if/3 +> > > builtin:read_line/2 +> executeMiniProgram:getDfmRepresentation/3 +> > builtin:append/3 +> > builtin:clause/2 +> > builtin:current_predicate/2 +> > executeMiniProgram:getDfmRepresentation/3 ***** looping ***** +> > builtin:retract/1 +> executeMiniProgram:getNameSpace/2 +> > builtin: = /2 +> > lists:append/2 +> > builtin:atom_codes/2 +> > executeMiniProgram:getNameSpace/2 ***** looping ***** +> executeMiniProgram:getSemanticFacts/3 +> > builtin: = /2 +> > executeMiniProgram:assignIds/1 +> > > executeMiniProgram:assignIds/2 +> > > > executeMiniProgram:assignIds/2 ***** looping ***** +> > > > builtin:atom_codes/2 +> > > > builtin:atom_concat/3 +> > > > builtin:is/2 +> > > > builtin:number_codes/2 +> > builtin:findall/3 +> > executeMiniProgram:functionGlobalSignature/5 +> > > builtin:findall/3 +> > > executeMiniProgram:functionCallTraversal/3 +> > > > builtin: = /2 +> > > > executeMiniProgram:functionCallTraversal/3 ***** looping ***** +> > > > executeMiniProgram:functionCallTraversalStep/3 +> > > > > executeMiniProgram:functionCallTraversalStepHelper/4 +> > > > > > builtin: = /2 +> > > > > > builtin:append/3 +> > > > > > executeMiniProgram:filterNonGlobals/3 +> > > > > > > executeMiniProgram:filterNonGlobals/3 ***** looping ***** +> > > > > > > executeMiniProgram:global/2 +> > > > > > > > builtin:memberchk/2 +> > > > > > executeMiniProgram:getNeighborsInputsOutputs/4 +> > > > > > > lists:append/2 +> > > > > > > builtin:findall/3 +> > > > > > builtin:sort/2 +> > > executeMiniProgram:getFunctionTraversalInfo/4 +> > > > builtin:findall/3 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > > builtin:sort/2 +> > builtin:if/3 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > executeMiniProgram:staticSingleAssignment/3 +> > > builtin: = /2 +> > > lists:append/2 +> > > builtin:append/3 +> > > executeMiniProgram:functionFacts/7 +> > > > builtin: = /2 +> > > > builtin:append/3 +> > > > executeMiniProgram:functionFacts/7 ***** looping ***** +> > > > executeMiniProgram:processSource/2 +> > > > > builtin:(\+)/1 +> > > > > builtin:append/3 +> > > > > builtin:atom_codes/2 +> > > > > builtin:throw/1 +> > > > executeMiniProgram:processStatement/5 +> > > > > builtin: = /2 +> > > > > builtin: =.. /2 +> > > > > executeMiniProgram:expandExternalCall/2 +> > > > > > builtin: = /2 +> > > > > > solsticeUtility:generateAtom/2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:is/2 +> > > > > > > builtin:number_codes/2 +> > > > > > > assert-solsticeUtility:atomNumber/2 +> > > > > > > retract-solsticeUtility:atomNumber/2 +> > > > > executeMiniProgram:expandFunction/4 +> > > > > > builtin: = /2 +> > > > > > solsticeUtility:generateAtom/2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:is/2 +> > > > > > > builtin:number_codes/2 +> > > > > > > assert-solsticeUtility:atomNumber/2 +> > > > > > > retract-solsticeUtility:atomNumber/2 +> > > > > > builtin:memberchk/2 +> > > > > > executeMiniProgram:setContext/3 +> > > > > > builtin:throw/1 +> > > > > executeMiniProgram:expandStructure/4 +> > > > > > builtin: = /2 +> > > > > > builtin:memberchk/2 +> > > > > > executeMiniProgram:setContext/3 +> > > > > executeMiniProgram:instanceVariable/5 +> > > > > > builtin: = /2 +> > > > > > builtin:ground/1 +> > > > > > builtin:is/2 +> > > > > > builtin:member/2 +> > > > > > builtin:memberchk/2 +> > > > > > lists:select/4 +> > > > > > lists:selectchk/3 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > > > > builtin:memberchk/2 +> > > > > executeMiniProgram:mergeVariableInstances/4 +> > > > > > builtin:memberchk/2 +> > > > > > executeMiniProgram:mergeVariableInstances/7 +> > > > > > > builtin: = /2 +> > > > > > > builtin:is/2 +> > > > > > > executeMiniProgram:mergeVariableInstances/7 ***** looping ***** +> > > > > > > lists:selectchk/3 +> > > > > > lists:selectchk/4 +> > > > > executeMiniProgram:processStatement/5 ***** looping ***** +> > > > > lists:scanlist/5 +> > > > > lists:selectchk/4 +> > > undefined:list_to_ord_set/2 +> > > builtin:memberchk/2 +> > > executeMiniProgram:processStatement/5 +> > > > builtin: = /2 +> > > > builtin: =.. /2 +> > > > executeMiniProgram:expandExternalCall/2 +> > > > > builtin: = /2 +> > > > > solsticeUtility:generateAtom/2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:atom_concat/3 +> > > > > > builtin:is/2 +> > > > > > builtin:number_codes/2 +> > > > > > assert-solsticeUtility:atomNumber/2 +> > > > > > retract-solsticeUtility:atomNumber/2 +> > > > executeMiniProgram:expandFunction/4 +> > > > > builtin: = /2 +> > > > > solsticeUtility:generateAtom/2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:atom_concat/3 +> > > > > > builtin:is/2 +> > > > > > builtin:number_codes/2 +> > > > > > assert-solsticeUtility:atomNumber/2 +> > > > > > retract-solsticeUtility:atomNumber/2 +> > > > > builtin:memberchk/2 +> > > > > executeMiniProgram:setContext/3 +> > > > > builtin:throw/1 +> > > > executeMiniProgram:expandStructure/4 +> > > > > builtin: = /2 +> > > > > builtin:memberchk/2 +> > > > > executeMiniProgram:setContext/3 +> > > > executeMiniProgram:instanceVariable/5 +> > > > > builtin: = /2 +> > > > > builtin:ground/1 +> > > > > builtin:is/2 +> > > > > builtin:member/2 +> > > > > builtin:memberchk/2 +> > > > > lists:select/4 +> > > > > lists:selectchk/3 +> > > > > lists:selectchk/4 +> > > > > builtin:throw/1 +> > > > builtin:memberchk/2 +> > > > executeMiniProgram:mergeVariableInstances/4 +> > > > > builtin:memberchk/2 +> > > > > executeMiniProgram:mergeVariableInstances/7 +> > > > > > builtin: = /2 +> > > > > > builtin:is/2 +> > > > > > executeMiniProgram:mergeVariableInstances/7 ***** looping ***** +> > > > > > lists:selectchk/3 +> > > > > lists:selectchk/4 +> > > > executeMiniProgram:processStatement/5 ***** looping ***** +> > > > lists:scanlist/5 +> > > > lists:selectchk/4 +> > > lists:select/4 +> > > executeMiniProgram:setContext/3 +> > > executeMiniProgram:staticSingleAssignment/3 ***** looping ***** +> builtin:if/3 +> executeMiniProgram:loadCfm/2 +> > builtin:assert/1 +> > executeMiniProgram:assertStmt/2 +> > > builtin:assert/1 +> executeMiniProgram:poToPro/3 +> > executeMiniProgram:addEdges/1 +> > > builtin:,/2 +> > builtin:findall/3 +> > executeMiniProgram:nlWrite/1 +> > > builtin:nl/0 +> > > builtin:write/1 +> > > builtin:writeq/1 +> > builtin:open/3 +> > builtin:sort/2 +> > builtin:tell/1 +> > builtin:told/0 +> > builtin:use_module/1 +> solsticeUtility:resetAllAtomGeneration/0 +> > builtin:retractall/1 +> builtin:save_modules/2 + +----- Going Down executeMiniProgram:buildDfm/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +executeMiniProgram.pro 128:153 + +executeMiniProgram:buildDfm/4 uses: +> builtin: = /2 +> executeMiniProgram:cleanNamespace/1 +> > builtin:(\+)/1 +> > builtin:clause/2 +> > builtin:current_predicate/2 +> > builtin:retract/1 +> executeMiniProgram:createDfm/2 +> > builtin:assert/1 +> > dfmCreate:dfmCreate/2 +> > > builtin:,/2 +> > > dfmCreate:dfmCreateDeclarations/2 +> > > > builtin:,/2 +> > > dfmCreate:dfmCreateSignature/2 +> > > > builtin:,/2 +> > > dfmCreate:reduceToPredGateNodes/1 +> > > > builtin:findall/3 +> > > > dfmCreate:retractPredNonGateNodes/2 +> > > > > builtin:findall/3 +> > > > > undefined:list_to_ord_set/2 +> > > dfmCreate:unRollWhileLoops/2 +> > > > builtin:,/2 +> > dfmCreate:dfmCreateDomainName/2 +> > > builtin:atom_concat/3 +> executeMiniProgram:getDfmRepresentation/3 +> > builtin:append/3 +> > builtin:clause/2 +> > builtin:current_predicate/2 +> > executeMiniProgram:getDfmRepresentation/3 ***** looping ***** +> > builtin:retract/1 +> executeMiniProgram:getSemanticFacts/3 +> > builtin: = /2 +> > executeMiniProgram:assignIds/1 +> > > executeMiniProgram:assignIds/2 +> > > > executeMiniProgram:assignIds/2 ***** looping ***** +> > > > builtin:atom_codes/2 +> > > > builtin:atom_concat/3 +> > > > builtin:is/2 +> > > > builtin:number_codes/2 +> > builtin:findall/3 +> > executeMiniProgram:functionGlobalSignature/5 +> > > builtin:findall/3 +> > > executeMiniProgram:functionCallTraversal/3 +> > > > builtin: = /2 +> > > > executeMiniProgram:functionCallTraversal/3 ***** looping ***** +> > > > executeMiniProgram:functionCallTraversalStep/3 +> > > > > executeMiniProgram:functionCallTraversalStepHelper/4 +> > > > > > builtin: = /2 +> > > > > > builtin:append/3 +> > > > > > executeMiniProgram:filterNonGlobals/3 +> > > > > > > executeMiniProgram:filterNonGlobals/3 ***** looping ***** +> > > > > > > executeMiniProgram:global/2 +> > > > > > > > builtin:memberchk/2 +> > > > > > executeMiniProgram:getNeighborsInputsOutputs/4 +> > > > > > > lists:append/2 +> > > > > > > builtin:findall/3 +> > > > > > builtin:sort/2 +> > > executeMiniProgram:getFunctionTraversalInfo/4 +> > > > builtin:findall/3 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > > builtin:sort/2 +> > builtin:if/3 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > executeMiniProgram:staticSingleAssignment/3 +> > > builtin: = /2 +> > > lists:append/2 +> > > builtin:append/3 +> > > executeMiniProgram:functionFacts/7 +> > > > builtin: = /2 +> > > > builtin:append/3 +> > > > executeMiniProgram:functionFacts/7 ***** looping ***** +> > > > executeMiniProgram:processSource/2 +> > > > > builtin:(\+)/1 +> > > > > builtin:append/3 +> > > > > builtin:atom_codes/2 +> > > > > builtin:throw/1 +> > > > executeMiniProgram:processStatement/5 +> > > > > builtin: = /2 +> > > > > builtin: =.. /2 +> > > > > executeMiniProgram:expandExternalCall/2 +> > > > > > builtin: = /2 +> > > > > > solsticeUtility:generateAtom/2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:is/2 +> > > > > > > builtin:number_codes/2 +> > > > > > > assert-solsticeUtility:atomNumber/2 +> > > > > > > retract-solsticeUtility:atomNumber/2 +> > > > > executeMiniProgram:expandFunction/4 +> > > > > > builtin: = /2 +> > > > > > solsticeUtility:generateAtom/2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:is/2 +> > > > > > > builtin:number_codes/2 +> > > > > > > assert-solsticeUtility:atomNumber/2 +> > > > > > > retract-solsticeUtility:atomNumber/2 +> > > > > > builtin:memberchk/2 +> > > > > > executeMiniProgram:setContext/3 +> > > > > > builtin:throw/1 +> > > > > executeMiniProgram:expandStructure/4 +> > > > > > builtin: = /2 +> > > > > > builtin:memberchk/2 +> > > > > > executeMiniProgram:setContext/3 +> > > > > executeMiniProgram:instanceVariable/5 +> > > > > > builtin: = /2 +> > > > > > builtin:ground/1 +> > > > > > builtin:is/2 +> > > > > > builtin:member/2 +> > > > > > builtin:memberchk/2 +> > > > > > lists:select/4 +> > > > > > lists:selectchk/3 +> > > > > > lists:selectchk/4 +> > > > > > builtin:throw/1 +> > > > > builtin:memberchk/2 +> > > > > executeMiniProgram:mergeVariableInstances/4 +> > > > > > builtin:memberchk/2 +> > > > > > executeMiniProgram:mergeVariableInstances/7 +> > > > > > > builtin: = /2 +> > > > > > > builtin:is/2 +> > > > > > > executeMiniProgram:mergeVariableInstances/7 ***** looping ***** +> > > > > > > lists:selectchk/3 +> > > > > > lists:selectchk/4 +> > > > > executeMiniProgram:processStatement/5 ***** looping ***** +> > > > > lists:scanlist/5 +> > > > > lists:selectchk/4 +> > > undefined:list_to_ord_set/2 +> > > builtin:memberchk/2 +> > > executeMiniProgram:processStatement/5 +> > > > builtin: = /2 +> > > > builtin: =.. /2 +> > > > executeMiniProgram:expandExternalCall/2 +> > > > > builtin: = /2 +> > > > > solsticeUtility:generateAtom/2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:atom_concat/3 +> > > > > > builtin:is/2 +> > > > > > builtin:number_codes/2 +> > > > > > assert-solsticeUtility:atomNumber/2 +> > > > > > retract-solsticeUtility:atomNumber/2 +> > > > executeMiniProgram:expandFunction/4 +> > > > > builtin: = /2 +> > > > > solsticeUtility:generateAtom/2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:atom_concat/3 +> > > > > > builtin:is/2 +> > > > > > builtin:number_codes/2 +> > > > > > assert-solsticeUtility:atomNumber/2 +> > > > > > retract-solsticeUtility:atomNumber/2 +> > > > > builtin:memberchk/2 +> > > > > executeMiniProgram:setContext/3 +> > > > > builtin:throw/1 +> > > > executeMiniProgram:expandStructure/4 +> > > > > builtin: = /2 +> > > > > builtin:memberchk/2 +> > > > > executeMiniProgram:setContext/3 +> > > > executeMiniProgram:instanceVariable/5 +> > > > > builtin: = /2 +> > > > > builtin:ground/1 +> > > > > builtin:is/2 +> > > > > builtin:member/2 +> > > > > builtin:memberchk/2 +> > > > > lists:select/4 +> > > > > lists:selectchk/3 +> > > > > lists:selectchk/4 +> > > > > builtin:throw/1 +> > > > builtin:memberchk/2 +> > > > executeMiniProgram:mergeVariableInstances/4 +> > > > > builtin:memberchk/2 +> > > > > executeMiniProgram:mergeVariableInstances/7 +> > > > > > builtin: = /2 +> > > > > > builtin:is/2 +> > > > > > executeMiniProgram:mergeVariableInstances/7 ***** looping ***** +> > > > > > lists:selectchk/3 +> > > > > lists:selectchk/4 +> > > > executeMiniProgram:processStatement/5 ***** looping ***** +> > > > lists:scanlist/5 +> > > > lists:selectchk/4 +> > > lists:select/4 +> > > executeMiniProgram:setContext/3 +> > > executeMiniProgram:staticSingleAssignment/3 ***** looping ***** +> lists:is_list/1 +> executeMiniProgram:loadCfm/2 +> > builtin:assert/1 +> > executeMiniProgram:assertStmt/2 +> > > builtin:assert/1 +> solsticeUtility:resetAllAtomGeneration/0 +> > builtin:retractall/1 + +----- Going Down executeMiniProgram:buildDfm/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +executeMiniProgram.pro 153:156 + +executeMiniProgram:buildDfm/3 uses: +> executeMiniProgram:catchCall/2 +> > builtin: = /2 + +----- Going Down executeMiniProgram:namespaceToFile/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/executeMiniProgram.pro +executeMiniProgram.pro 215:236 + +executeMiniProgram:namespaceToFile/2 uses: +> builtin:close/1 +> builtin:findall/3 +> executeMiniProgram:nlWrite/1 +> > builtin:nl/0 +> > builtin:write/1 +> > builtin:writeq/1 +> builtin:open/3 +> builtin:set_output/1 +> builtin:sort/2 + +----- Going Down solsticeFileUtility:save_module_txt/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeFileUtility.pro +solsticeFileUtility.pro 34:49 + +solsticeFileUtility:save_module_txt/2 uses: +> builtin:listing/0 +> builtin:set_module/1 +> builtin:tell/1 +> builtin:told/0 + +----- Going Down ontology:getMaxFileSize/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +OntologyInterface.pro 112:130 + +ontology:getMaxFileSize/2 uses: +> builtin:atom_concat/3 +> ontology:hasA/2 +> > ontology:getDomain/1 +> > ontology:internalHasA/3 +> > > builtin:;/2 +> > > undefined:internalIsA/3 +> ontology:isA/2 +> > ontology:getDomain/1 +> > undefined:internalIsA/3 + +----- Going Down ontology:getMinMaxFromFile/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +OntologyInterface.pro 130:148 + +ontology:getMinMaxFromFile/4 uses: +> ontology:getFileNodeString/3 +> > builtin:atom_concat/3 +> > ontology:number_to_atom/2 +> > > builtin:atom_codes/2 +> > > builtin:number_codes/2 +> ontology:getMinMax/3 +> > ontology:getMinMaxFromAtom/3 +> > > solsticeUtility:splitAtom/3 +> > > > builtin: = /2 +> > > > builtin:atom_codes/2 +> > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > builtin:(\+)/1 +> > > > > builtin:atom_codes/2 +> > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > lists:is_list/1 +> > > > solsticeUtility:splitCharacterCodes/3 +> > > > > lists:append/2 +> > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > ontology:hasA/2 +> > > ontology:getDomain/1 +> > > ontology:internalHasA/3 +> > > > builtin:;/2 +> > > > undefined:internalIsA/3 +> > ontology:isA/2 +> > > ontology:getDomain/1 +> > > undefined:internalIsA/3 + +----- Going Down ontology:getMinMaxFromScreen/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +OntologyInterface.pro 148:160 + +ontology:getMinMaxFromScreen/4 uses: +> ontology:getMinMax/3 +> > ontology:getMinMaxFromAtom/3 +> > > solsticeUtility:splitAtom/3 +> > > > builtin: = /2 +> > > > builtin:atom_codes/2 +> > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > builtin:(\+)/1 +> > > > > builtin:atom_codes/2 +> > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > lists:is_list/1 +> > > > solsticeUtility:splitCharacterCodes/3 +> > > > > lists:append/2 +> > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > ontology:hasA/2 +> > > ontology:getDomain/1 +> > > ontology:internalHasA/3 +> > > > builtin:;/2 +> > > > undefined:internalIsA/3 +> > ontology:isA/2 +> > > ontology:getDomain/1 +> > > undefined:internalIsA/3 +> ontology:getScreenNodeString/3 +> > builtin:atom_concat/3 +> > ontology:number_to_atom/2 +> > > builtin:atom_codes/2 +> > > builtin:number_codes/2 + +----- Going Down ontology:getPathInOntology/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/OntologyInterface.pro +OntologyInterface.pro 174:186 + +ontology:getPathInOntology/2 uses: +> ontology:getPathInOntologyHelper/3 +> > ontology:getPathInOntologyHelper/3 ***** looping ***** +> > ontology:isA/2 +> > > ontology:getDomain/1 +> > > undefined:internalIsA/3 +> lists:rev/2 + +----- Going Down diagnostics:trace_open/0 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 35:40 + +diagnostics:trace_open/0 uses: +> builtin:open/4 +> builtin:retractall/1 +> diagnostics:trace_file/1 +> > builtin:atom_concat/3 +> > diagnostics:getTimeStamp/1 +> > > builtin:atom_codes/2 +> > > builtin:atom_concat/3 +> > > undefined:datime/1 +> > > builtin:number_codes/2 + +----- Going Down diagnostics:trace_close/0 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 40:43 + +diagnostics:trace_close/0 uses: +> builtin:close/1 + +----- Going Down diagnostics:trace_tree/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 166:171 + +diagnostics:trace_tree/1 uses: +> diagnostics:tl/1 +> > builtin:write/2 +> diagnostics:tnl/0 +> > builtin:nl/1 +> diagnostics:trace_tree/2 +> > builtin: = /2 +> > builtin:is/2 +> > diagnostics:tl/1 +> > > builtin:write/2 +> > diagnostics:tnl/0 +> > > builtin:nl/1 +> > diagnostics:trace/1 +> > > builtin:flush_output/1 +> > > builtin:writeq/2 +> > diagnostics:trace_trees/2 +> > > diagnostics:trace_tree/2 ***** looping ***** +> > > diagnostics:trace_trees/2 ***** looping ***** +> > diagnostics:tts/1 +> > > builtin:is/2 +> > > diagnostics:tt/0 +> > > > builtin:write/2 +> > > diagnostics:tts/1 ***** looping ***** + +----- Going Down diagnostics:log/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 189:203 + +diagnostics:log/2 uses: +> builtin:compound/1 +> undefined:datime/1 +> builtin:flush_output/0 +> builtin:flush_output/1 +> builtin:nl/0 +> builtin:nl/1 +> diagnostics:open_log_file/0 +> > diagnostics:get_log_file/1 +> > > builtin:atom_concat/3 +> > > undefined:environ/2 +> > builtin:if/3 +> > diagnostics:log_directory/0 +> > > builtin:atom_concat/3 +> > > undefined:environ/2 +> > > builtin:if/3 +> > assert-user:currentStream/1 +> builtin:write/1 +> builtin:write/2 +> diagnostics:write_log/3 +> > undefined:datime/1 +> > builtin:write/2 +> > diagnostics:write_log_argument/2 +> > > builtin:write/2 +> diagnostics:write_terminal_log/2 +> > undefined:datime/1 +> > builtin:flush_output/0 +> > builtin:nl/0 +> > builtin:write/1 +> > diagnostics:write_terminal_log_argument/1 +> > > builtin:write/1 +> user:currentStream/1 + +----- Going Down diagnostics:close_log_file/0 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 264:269 + +diagnostics:close_log_file/0 uses: +> builtin:close/1 +> user:currentStream/1 +> retract-user:currentStream/1 + +----- Going Down diagnostics:rename_log_file_with_timestamp/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 299:308 + +diagnostics:rename_log_file_with_timestamp/1 uses: +> builtin:atom_concat/3 +> undefined:environ/2 +> diagnostics:getTimeStamp/1 +> > builtin:atom_codes/2 +> > builtin:atom_concat/3 +> > undefined:datime/1 +> > builtin:number_codes/2 +> file_systems:rename_file/2 + +----- Going Down diagnostics:(?)/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 337:346 + +diagnostics:(?)/1 uses: +> builtin:call/1 +> diagnostics:tnl/0 +> > builtin:nl/1 +> diagnostics:trace/1 +> > builtin:flush_output/1 +> > builtin:writeq/2 + +----- Going Down diagnostics:(bg)/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 346:351 + +diagnostics:(bg)/1 uses: +> builtin:call/1 +> builtin:nl/0 +> builtin:writeq/1 + +----- Going Down diagnostics:(ding)/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 351:360 + +diagnostics:(ding)/1 uses: +> builtin:call/1 +> builtin:functor/3 +> diagnostics:tick/1 +> > builtin:is/2 +> > assert-diagnostics:dinged/2 +> > retract-diagnostics:dinged/2 + +----- Going Down diagnostics:(fugit)/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 368:391 + +diagnostics:(fugit)/1 uses: +> builtin:call/1 +> diagnostics:functorID/2 +> > builtin: =.. /2 +> > builtin: > /2 +> > builtin:arg/3 +> > builtin:functor/3 +> > lists:is_list/1 +> > builtin:length/2 +> builtin:is/2 +> builtin:statistics/2 +> assert-diagnostics:tempus/1 +> assert-diagnostics:tempusFail/1 + +----- Going Down diagnostics:fugit_report/0 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 391:400 + +diagnostics:fugit_report/0 uses: +> builtin:findall/3 +> diagnostics:fugit_summaries/2 +> > builtin: =.. /2 +> > builtin:findall/3 +> > diagnostics:fugit_summaries/2 ***** looping ***** +> > builtin:is/2 +> > builtin:keysort/2 +> > builtin:length/2 +> > diagnostics:sum_tempus/3 +> > > builtin:is/2 +> > > diagnostics:sum_tempus/3 ***** looping ***** +> > diagnostics:trace/1 +> > > builtin:flush_output/1 +> > > builtin:writeq/2 +> > diagnostics:trace_list/1 +> > > diagnostics:trace_items/2 +> > > > builtin:is/2 +> > > > diagnostics:tl/1 +> > > > > builtin:write/2 +> > > > diagnostics:tnl/0 +> > > > > builtin:nl/1 +> > > > diagnostics:trace/1 +> > > > > builtin:flush_output/1 +> > > > > builtin:writeq/2 +> > > > diagnostics:trace_items/2 ***** looping ***** +> > > > diagnostics:tts/1 +> > > > > builtin:is/2 +> > > > > diagnostics:tt/0 +> > > > > > builtin:write/2 +> > > > > diagnostics:tts/1 ***** looping ***** +> lists:remove_dups/2 + +----- Going Down diagnostics:profile_init/0 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 442:455 + +diagnostics:profile_init/0 uses: +> builtin:atom_concat/3 +> diagnostics:getTimeStamp/1 +> > builtin:atom_codes/2 +> > builtin:atom_concat/3 +> > undefined:datime/1 +> > builtin:number_codes/2 +> diagnostics:profile_init/1 +> > builtin:abolish/1 +> > builtin:open/4 +> > builtin:retractall/1 +> > assert-diagnostics:fugitID/1 +> > assert-diagnostics:indentation/1 + +----- Going Down diagnostics:(pf)/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 462:465 + +diagnostics:(pf)/1 uses: +> diagnostics:(profile)/1 +> > builtin:call/1 +> > diagnostics:decIndent/0 +> > > builtin: >= /2 +> > > diagnostics:indentation/1 +> > > builtin:is/2 +> > > assert-diagnostics:indentation/1 +> > > retract-diagnostics:indentation/1 +> > diagnostics:display_pred/2 +> > > builtin: =.. /2 +> > > diagnostics:decIndent/0 +> > > > builtin: >= /2 +> > > > diagnostics:indentation/1 +> > > > builtin:is/2 +> > > > assert-diagnostics:indentation/1 +> > > > retract-diagnostics:indentation/1 +> > > diagnostics:incIndent/0 +> > > > builtin:is/2 +> > > > assert-diagnostics:indentation/1 +> > > > retract-diagnostics:indentation/1 +> > > diagnostics:indent/1 +> > > > builtin:format/3 +> > > > diagnostics:indent/1 ***** looping ***** +> > > > diagnostics:indentation/1 +> > > > assert-diagnostics:indentation/1 +> > > builtin:nl/1 +> > > diagnostics:pred_args/2 +> > > > diagnostics:indent/1 +> > > > > builtin:format/3 +> > > > > diagnostics:indent/1 ***** looping ***** +> > > > > diagnostics:indentation/1 +> > > > > assert-diagnostics:indentation/1 +> > > > builtin:nl/1 +> > > > diagnostics:pred_arg/2 +> > > > > builtin: = /2 +> > > > > builtin: > /2 +> > > > > builtin: \= /2 +> > > > > builtin:compound/1 +> > > > > diagnostics:display_pred/2 ***** looping ***** +> > > > > builtin:functor/3 +> > > > > lists:is_list/1 +> > > > > diagnostics:pred_arg/2 ***** looping ***** +> > > > > builtin:write/2 +> > > > > builtin:writeq/2 +> > > > > lists:length/2 +> > > > diagnostics:pred_args/2 ***** looping ***** +> > > > builtin:write/2 +> > > builtin:writeq/2 +> > builtin:flush_output/1 +> > builtin:functor/3 +> > diagnostics:incIndent/0 +> > > builtin:is/2 +> > > assert-diagnostics:indentation/1 +> > > retract-diagnostics:indentation/1 +> > diagnostics:indent/1 +> > > builtin:format/3 +> > > diagnostics:indent/1 ***** looping ***** +> > > diagnostics:indentation/1 +> > > assert-diagnostics:indentation/1 +> > builtin:is/2 +> > builtin:nl/0 +> > builtin:nl/1 +> > builtin:statistics/2 +> > builtin:write/1 +> > builtin:write/2 +> > assert-diagnostics:tempus/1 + +----- Going Down diagnostics:profile_fini/0 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 490:494 + +diagnostics:profile_fini/0 uses: +> builtin:close/1 +> diagnostics:profile_report/1 +> > builtin:findall/3 +> > lists:keys_and_values/3 +> > builtin:keysort/2 +> > builtin:nl/1 +> > lists:sumlist/2 +> > builtin:write/2 +> > diagnostics:write_fts/2 +> > > builtin:nl/1 +> > > diagnostics:write_fts/2 ***** looping ***** +> > > builtin:writeq/2 + +----- Going Down diagnostics:trace_af_frame/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 535:544 + +diagnostics:trace_af_frame/1 uses: +> builtin: =.. /2 +> diagnostics:tnl/0 +> > builtin:nl/1 +> diagnostics:trace/1 +> > builtin:flush_output/1 +> > builtin:writeq/2 +> diagnostics:trace_af_list/1 +> > diagnostics:tnl/0 +> > > builtin:nl/1 +> > diagnostics:trace/1 +> > > builtin:flush_output/1 +> > > builtin:writeq/2 +> > diagnostics:trace_af_list/1 ***** looping ***** +> > diagnostics:trace_afs/1 +> > > diagnostics:tnl/0 +> > > > builtin:nl/1 +> > > diagnostics:trace/1 +> > > > builtin:flush_output/1 +> > > > builtin:writeq/2 +> > > diagnostics:trace_af/1 +> > > > builtin: =.. /2 +> > > > diagnostics:display_afargs/1 +> > > > > diagnostics:display_afarg/1 +> > > > > > diagnostics:display_list/1 +> > > > > > > diagnostics:display_list/2 +> > > > > > > > diagnostics:display_item/2 +> > > > > > > > > builtin: =.. /2 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > builtin:atomic/1 +> > > > > > > > > diagnostics:display_args/2 +> > > > > > > > > > diagnostics:display_item/2 ***** looping ***** +> > > > > > > > > > diagnostics:display_items/2 +> > > > > > > > > > > diagnostics:display_item/2 ***** looping ***** +> > > > > > > > > > > diagnostics:display_items/2 ***** looping ***** +> > > > > > > > > > > diagnostics:tl/1 +> > > > > > > > > > > > builtin:write/2 +> > > > > > > > > > > diagnostics:tnl/0 +> > > > > > > > > > > > builtin:nl/1 +> > > > > > > > > > diagnostics:tl/1 +> > > > > > > > > > > builtin:write/2 +> > > > > > > > > > diagnostics:tnl/0 +> > > > > > > > > > > builtin:nl/1 +> > > > > > > > > > diagnostics:tts/1 +> > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > diagnostics:tt/0 +> > > > > > > > > > > > builtin:write/2 +> > > > > > > > > > > diagnostics:tts/1 ***** looping ***** +> > > > > > > > > diagnostics:display_list/2 ***** looping ***** +> > > > > > > > > builtin:is/2 +> > > > > > > > > lists:is_list/1 +> > > > > > > > > builtin:memberchk/2 +> > > > > > > > > diagnostics:tl/1 +> > > > > > > > > > builtin:write/2 +> > > > > > > > > diagnostics:tnl/0 +> > > > > > > > > > builtin:nl/1 +> > > > > > > > > diagnostics:trace/1 +> > > > > > > > > > builtin:flush_output/1 +> > > > > > > > > > builtin:writeq/2 +> > > > > > > > > diagnostics:tts/1 +> > > > > > > > > > builtin:is/2 +> > > > > > > > > > diagnostics:tt/0 +> > > > > > > > > > > builtin:write/2 +> > > > > > > > > > diagnostics:tts/1 ***** looping ***** +> > > > > > > > diagnostics:display_items/2 +> > > > > > > > > diagnostics:display_item/2 +> > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > builtin:atomic/1 +> > > > > > > > > > diagnostics:display_args/2 +> > > > > > > > > > > diagnostics:display_item/2 ***** looping ***** +> > > > > > > > > > > diagnostics:display_items/2 ***** looping ***** +> > > > > > > > > > > diagnostics:tl/1 +> > > > > > > > > > > > builtin:write/2 +> > > > > > > > > > > diagnostics:tnl/0 +> > > > > > > > > > > > builtin:nl/1 +> > > > > > > > > > > diagnostics:tts/1 +> > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > diagnostics:tt/0 +> > > > > > > > > > > > > builtin:write/2 +> > > > > > > > > > > > diagnostics:tts/1 ***** looping ***** +> > > > > > > > > > diagnostics:display_list/2 ***** looping ***** +> > > > > > > > > > builtin:is/2 +> > > > > > > > > > lists:is_list/1 +> > > > > > > > > > builtin:memberchk/2 +> > > > > > > > > > diagnostics:tl/1 +> > > > > > > > > > > builtin:write/2 +> > > > > > > > > > diagnostics:tnl/0 +> > > > > > > > > > > builtin:nl/1 +> > > > > > > > > > diagnostics:trace/1 +> > > > > > > > > > > builtin:flush_output/1 +> > > > > > > > > > > builtin:writeq/2 +> > > > > > > > > > diagnostics:tts/1 +> > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > diagnostics:tt/0 +> > > > > > > > > > > > builtin:write/2 +> > > > > > > > > > > diagnostics:tts/1 ***** looping ***** +> > > > > > > > > diagnostics:display_items/2 ***** looping ***** +> > > > > > > > > diagnostics:tl/1 +> > > > > > > > > > builtin:write/2 +> > > > > > > > > diagnostics:tnl/0 +> > > > > > > > > > builtin:nl/1 +> > > > > > > > diagnostics:tl/1 +> > > > > > > > > builtin:write/2 +> > > > > > > > diagnostics:tnl/0 +> > > > > > > > > builtin:nl/1 +> > > > > > > > diagnostics:tts/1 +> > > > > > > > > builtin:is/2 +> > > > > > > > > diagnostics:tt/0 +> > > > > > > > > > builtin:write/2 +> > > > > > > > > diagnostics:tts/1 ***** looping ***** +> > > > > > diagnostics:tnl/0 +> > > > > > > builtin:nl/1 +> > > > > > diagnostics:trace/1 +> > > > > > > builtin:flush_output/1 +> > > > > > > builtin:writeq/2 +> > > > > diagnostics:display_afargs/1 ***** looping ***** +> > > > diagnostics:tnl/0 +> > > > > builtin:nl/1 +> > > > diagnostics:trace/1 +> > > > > builtin:flush_output/1 +> > > > > builtin:writeq/2 +> > > diagnostics:trace_afs/1 ***** looping ***** + +----- Going Down diagnostics:compare_lists/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 553:558 + +diagnostics:compare_lists/2 uses: +> builtin: == /2 +> diagnostics:tl/1 +> > builtin:write/2 +> diagnostics:tnl/0 +> > builtin:nl/1 +> diagnostics:trace_list/1 +> > diagnostics:trace_items/2 +> > > builtin:is/2 +> > > diagnostics:tl/1 +> > > > builtin:write/2 +> > > diagnostics:tnl/0 +> > > > builtin:nl/1 +> > > diagnostics:trace/1 +> > > > builtin:flush_output/1 +> > > > builtin:writeq/2 +> > > diagnostics:trace_items/2 ***** looping ***** +> > > diagnostics:tts/1 +> > > > builtin:is/2 +> > > > diagnostics:tt/0 +> > > > > builtin:write/2 +> > > > diagnostics:tts/1 ***** looping ***** + +----- Going Down diagnostics:atomlist_concat/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 652:655 + +diagnostics:atomlist_concat/2 uses: +> diagnostics:atomlist_concat/3 +> > builtin: = /2 +> > builtin:append/3 +> > builtin:atom/1 +> > builtin:atom_codes/2 +> > diagnostics:atomlist_concat/3 ***** looping ***** +> > builtin:number/1 +> > builtin:number_codes/2 + +----- Going Down diagnostics:check_bms/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 680:686 + +diagnostics:check_bms/1 uses: +> diagnostics:bnkl/1 +> diagnostics:check_length/2 +> > builtin: = /2 +> > builtin:length/2 +> > builtin:nl/0 +> > builtin:write/1 +> diagnostics:check_members/2 +> > diagnostics:check_members/2 ***** looping ***** +> > builtin:nl/0 +> > builtin:write/1 +> > lists:select/3 + +----- Going Down diagnostics:mltest/0 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 707:713 + +diagnostics:mltest/0 uses: +> builtin: = /2 +> diagnostics:lets/2 +> builtin:nl/0 +> builtin:write/1 + +----- Going Down dfmTraversal:assertExternalCalls/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 91:107 + +dfmTraversal:assertExternalCalls/1 uses: +> builtin:findall/3 + +----- Going Down dfmTraversal:generate_next_pairs/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 461:464 + +dfmTraversal:generate_next_pairs/2 uses: +> builtin:do/2 + +----- Going Down dfmTraversal:getEnclosingControlStructurePairs/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 466:483 + +dfmTraversal:getEnclosingControlStructurePairs/3 uses: +> builtin:,/2 +> builtin: = /2 + +----- Going Down dfmTraversal:extractBooleanVariables/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 613:617 + +dfmTraversal:extractBooleanVariables/2 uses: +> builtin:findall/3 + +----- Going Down dfmTraversal:isStraightLine/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 617:624 + +dfmTraversal:isStraightLine/3 uses: +> undefined:isClose/3 +> undefined:isDB2CloseCursor/3 +> undefined:isDB2DeclareCursor/3 +> undefined:isDB2Delete/3 +> undefined:isDB2Fetch/3 +> undefined:isDB2Insert/3 +> undefined:isDB2OpenCursor/3 +> undefined:isDB2Select/3 +> undefined:isDB2Update/3 +> dfmTraversal:isDateTime/3 +> > builtin:;/2 +> undefined:isDelete/3 +> undefined:isOpen/3 +> undefined:isRead/3 +> dfmTraversal:isWrite/3 +> > builtin:,/2 + +----- Going Down dfmTraversal:isNodeInMainWithUnreadOutput/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 800:807 + +dfmTraversal:isNodeInMainWithUnreadOutput/3 uses: +> builtin:,/2 + +----- Going Down dfmTraversal:iterationBlock/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 874:881 + +dfmTraversal:iterationBlock/3 uses: +> builtin:,/2 + +----- Going Down dfmTraversal:cleanupDomain/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 890:904 + +dfmTraversal:cleanupDomain/1 uses: +> builtin:abolish/1 + +----- Going Down dfmTraversal:get_terminal_nodes/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 904:927 + +dfmTraversal:get_terminal_nodes/3 uses: +> builtin:findall/3 +> builtin:sort/2 + +----- Going Down dfmTraversal:getFuncNode/6 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 935:938 + +dfmTraversal:getFuncNode/6 uses: +> builtin:,/2 + +----- Going Down dfmTraversal:buildNextStack/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 958:961 + +dfmTraversal:buildNextStack/5 uses: +> builtin:(\+)/1 +> builtin:ground/1 + +----- Going Down dfmTraversal:assertForwardArcOptimizationFacts/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 963:971 + +dfmTraversal:assertForwardArcOptimizationFacts/1 uses: +> builtin:,/2 + +----- Going Down dfmTraversal:buildForwardArcs/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 972:988 + +dfmTraversal:buildForwardArcs/1 uses: +> builtin:,/2 +> dfmTraversal:validateForwardArcs/1 +> > lists:delete/3 +> > builtin:findall/3 +> > builtin:if/3 + +----- Going Down dfmTraversal:full_traverse/6 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1018:1064 + +dfmTraversal:full_traverse/6 uses: +> builtin: = /2 +> builtin:(\+)/1 +> builtin:do/2 +> solsticeUtility:flattenList/2 +> > builtin:append/3 +> > solsticeUtility:flattenList/2 ***** looping ***** +> dfmTraversal:full_traverse_helper/8 +> > lists:append/2 +> > dfmTraversal:full_traverse_helper/8 ***** looping ***** +> > builtin:if/3 +> > dfmTraversal:make_into_args/4 +> > > dfmTraversal:arg_generator/4 +> > > > builtin:member/2 +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> dfmTraversal:get_module/3 +> > lists:append/2 +> > builtin:atom/1 +> > builtin:atom_codes/2 +> dfmTraversal:get_module_from_nodeID/2 +> > builtin: = /2 +> > lists:append/2 +> > builtin:atom/1 +> > builtin:atom_codes/2 +> builtin:ground/1 +> builtin:if/3 +> dfmTraversal:removeBrackets/2 +> > builtin:append/3 +> > builtin:atom_codes/2 +> builtin:retractall/1 + +----- Going Down dfmTraversal:find_all_downstream_nodes_inclusive/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1107:1117 + +dfmTraversal:find_all_downstream_nodes_inclusive/4 uses: +> builtin:do/2 +> solsticeUtility:flattenList/2 +> > builtin:append/3 +> > solsticeUtility:flattenList/2 ***** looping ***** +> dfmTraversal:getForwardNodeSet/2 +> > builtin:findall/3 +> > builtin:sort/2 +> undefined:list_to_set/2 + +----- Going Down dfmTraversal:step/8 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1180:1204 + +dfmTraversal:step/8 uses: +> builtin:findall/3 +> dfmTraversal:generate_next_edge/4 +> > lists:append/2 +> > dfmTraversal:extract/3 +> > > dfmTraversal:extract/5 +> > > > dfmTraversal:extract/5 ***** looping ***** +> > dfmTraversal:generate_pair/3 +> > > builtin: = /2 +> > > builtin: \= /2 +> > > builtin:findall/3 +> lists:remove_dups/2 + +----- Going Down dfmTraversal:forward_step/8 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1204:1213 + +dfmTraversal:forward_step/8 uses: +> builtin:findall/3 +> dfmTraversal:generate_next_forward_edge/4 +> > lists:append/2 +> > dfmTraversal:extract/3 +> > > dfmTraversal:extract/5 +> > > > dfmTraversal:extract/5 ***** looping ***** +> > dfmTraversal:generate_forward_pair/3 +> > > builtin: = /2 +> > > builtin: \= /2 +> > > builtin:findall/3 +> lists:remove_dups/2 + +----- Going Down dfmTraversal:find_an_arc/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1213:1227 + +dfmTraversal:find_an_arc/5 uses: +> builtin:,/2 + +----- Going Down dfmTraversal:find_a_forward_arc/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1227:1236 + +dfmTraversal:find_a_forward_arc/5 uses: +> builtin:,/2 + +----- Going Down dfmTraversal:find_a_pair/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1300:1322 + +dfmTraversal:find_a_pair/3 uses: +> builtin: = /2 +> builtin:(\+)/1 +> builtin:atom/1 +> builtin:call/4 +> dfmTraversal:get_module_from_nodeID/2 +> > builtin: = /2 +> > lists:append/2 +> > builtin:atom/1 +> > builtin:atom_codes/2 +> builtin:member/2 +> builtin:number/1 +> dfmTraversal:visited/1 +> assert-dfmTraversal:visited/1 + +----- Going Down dfmTraversal:find_a_forward_pair/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1356:1367 + +dfmTraversal:find_a_forward_pair/3 uses: +> builtin: = /2 +> builtin:(\+)/1 +> builtin:atom/1 +> builtin:call/4 +> dfmTraversal:get_module_from_nodeID/2 +> > builtin: = /2 +> > lists:append/2 +> > builtin:atom/1 +> > builtin:atom_codes/2 +> builtin:member/2 +> builtin:number/1 +> dfmTraversal:visited/1 +> assert-dfmTraversal:visited/1 + +----- Going Down dfmTraversal:write_arcs/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1457:1468 + +dfmTraversal:write_arcs/1 uses: +> builtin:,/2 + +----- Going Down dfmTraversal:convertNodesToAtoms/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1474:1494 + +dfmTraversal:convertNodesToAtoms/1 uses: +> builtin:,/2 + +----- Going Down dfmTraversal:convertAtomToTerm/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1508:1514 + +dfmTraversal:convertAtomToTerm/2 uses: +> builtin:append/3 +> builtin:atom_codes/2 +> undefined:read_term_from_codes/3 + +----- Going Down dfmTraversal:convertFactsToNewFormat/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1514:1524 + +dfmTraversal:convertFactsToNewFormat/1 uses: +> dfmTraversal:assertDfmStmtFacts/1 +> > builtin:,/2 +> dfmTraversal:assertExternalFuncInput/1 +> > builtin:,/2 +> > builtin:assert/1 +> dfmTraversal:assertFuncInput/1 +> > builtin:;/2 +> > builtin:append/3 +> > builtin:assert/1 +> dfmTraversal:assertInputDependencyFacts/1 +> > builtin:,/2 +> dfmTraversal:assertInputDependencyInverseFacts/1 +> > builtin:,/2 +> dfmTraversal:assertOutputDependencyFacts/1 +> > builtin:,/2 +> dfmTraversal:assertOutputDependencyInverseFacts/1 +> > builtin:,/2 + +----- Going Down dfmTraversal:queryForMissingArcs/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1603:1612 + +dfmTraversal:queryForMissingArcs/3 uses: +> builtin:findall/3 + +----- Going Down dfmTraversal:writeMissingArcsTxt/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1612:1621 + +dfmTraversal:writeMissingArcsTxt/3 uses: +> builtin:atom_concat/3 +> builtin:close/1 +> builtin:if/3 +> builtin:open/3 + +----- Going Down dfmTraversal:write_missing_arclist/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 1621:1623 + +dfmTraversal:write_missing_arclist/3 uses: +> builtin:,/2 +> builtin: = /2 +> solsticeUtility:splitAtom/3 +> > builtin: = /2 +> > builtin:atom_codes/2 +> > solsticeUtility:characterCodesToAtoms/2 +> > > builtin:(\+)/1 +> > > builtin:atom_codes/2 +> > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > lists:is_list/1 +> > solsticeUtility:splitCharacterCodes/3 +> > > lists:append/2 +> > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** + +----- Going Down dfmInterface:buildTraversalGraph/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 18:24 + +dfmInterface:buildTraversalGraph/3 uses: +> dfmInterface:buildFromTerminalNode/4 +> > dfmInterface:breakpoint/0 +> > dfmInterface:buildEdges/5 +> > > builtin:,/2 +> > > undefined:isRead/3 +> > > dfmInterface:isScreen/4 +> > > dfmInterface:isWrite/3 +> > > > builtin:,/2 +> > > dfmInterface:traverseRead/5 +> > > > builtin: = /2 +> > > > dfmInterface:buildFromTerminalNode/4 ***** looping ***** +> > > > builtin:do/2 +> > > > builtin:findall/3 +> > > > builtin:if/3 +> > > dfmInterface:traverseScreen/6 +> > > > builtin:,/2 +> > > > builtin: = /2 +> > > > builtin:if/3 +> > > dfmInterface:traverseWrite/5 +> > > > builtin:,/2 +> > > > builtin: = /2 +> > > > builtin:if/3 +> > builtin:findall/3 +> > dfmInterface:getNewStack/5 +> > dfmInterface:getPi/2 +> > dfmInterface:isExternalCall/6 +> > > builtin:,/2 +> > dfmInterface:isFunction/5 +> > > builtin:,/2 +> > undefined:isIfFunction/7 +> > dfmInterface:isLoop/3 +> > > builtin:,/2 +> > builtin:nl/0 +> > lists:remove_dups/2 +> > dfmInterface:traverseExternalCall/7 +> > > dfmInterface:breakpoint/0 +> > > dfmInterface:buildFromTerminalNode/4 ***** looping ***** +> > > dfmInterface:createExternalCallEntryArcs/7 +> > > > builtin:,/2 +> > > builtin:findall/3 +> > > builtin:sort/2 +> > dfmInterface:traverseFunction/7 +> > > dfmInterface:buildFromTerminalNode/4 ***** looping ***** +> > > dfmInterface:createFuncEntryArcs/7 +> > > > builtin:,/2 +> > > builtin:findall/3 +> > > builtin:sort/2 +> > dfmInterface:traverseIfFunction/7 +> > > dfmInterface:buildFromTerminalNode/4 ***** looping ***** +> > > dfmInterface:createIfFuncEntryArcs/7 +> > > > dfmInterface:createFuncEntryArcs/7 +> > > > > builtin:,/2 +> > > dfmInterface:createIfFuncExitArcs/7 +> > > > builtin:,/2 +> > builtin:write/1 +> dfmInterface:getTerminalNodes/3 +> > builtin:findall/3 +> builtin:member/2 +> dfmInterface:replaceNextVar/2 +> > builtin:assert/1 +> > builtin:retract/1 + +----- Going Down dfmInterface:createFuncExitArcs/7 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 274:285 + +dfmInterface:createFuncExitArcs/7 uses: +> builtin:,/2 + +----- Going Down dfmInterface:createExternalCallExitArcs/7 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 312:321 + +dfmInterface:createExternalCallExitArcs/7 uses: +> builtin:,/2 + +----- Going Down dfmInterface:getFunctionInput/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 394:400 + +dfmInterface:getFunctionInput/5 uses: +> builtin:,/2 + +----- Going Down dfmInterface:getExternalCallInput/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 421:428 + +dfmInterface:getExternalCallInput/5 uses: +> builtin:,/2 + +----- Going Down dfmInterface:getAllUpstreamPi/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 439:444 + +dfmInterface:getAllUpstreamPi/5 uses: +> builtin:findall/3 + +----- Going Down dfmInterface:getAllDownStreamPi/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 444:447 + +dfmInterface:getAllDownStreamPi/5 uses: +> builtin:findall/3 + +----- Going Down dfmInterface:walkBackwardHelper/6 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 466:467 + +dfmInterface:walkBackwardHelper/6 uses: +> dfmInterface:walkBackward/6 +> > builtin:,/2 +> > builtin:(\+)/1 +> > lists:is_list/1 +> > builtin:member/2 + +----- Going Down dfmInterface:full_traverse/7 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 469:511 + +dfmInterface:full_traverse/7 uses: +> builtin: = /2 +> dfmInterface:full_traverse_helper/7 +> > builtin: = /2 +> > lists:append/2 +> > builtin:append/3 +> > dfmInterface:contiune_or_abort/3 +> > > lists:include/3 +> > > dfmInterface:remove_tag/2 +> > > > builtin: =.. /2 +> > lists:convlist/3 +> > dfmInterface:full_traverse_helper/7 ***** looping ***** +> > builtin:member/2 +> > dfmInterface:step/6 +> > > builtin: = /2 +> > > builtin:(\+)/1 +> > > dfmInterface:filter_arcs/2 +> > > > lists:convlist/3 +> > > > dfmInterface:get_stack/2 +> > > > > builtin: = /2 +> > > > builtin:member/2 +> > > > lists:remove_dups/2 +> > > builtin:findall/3 +> > > dfmInterface:get_node_var_pairs/4 +> > > > builtin:findall/3 +> > dfmInterface:stop_on_functors/4 +> > > builtin: = /2 +> > > builtin: =.. /2 +> > > builtin:append/3 +> > > builtin:member/2 +> > > user:call/1 + +----- Going Down dfmInterface:is_continue/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 552:554 + +dfmInterface:is_continue/1 uses: + +----- Going Down dfmInterface:is_abort/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 554:555 + +dfmInterface:is_abort/1 uses: + +----- Going Down dfmInterface:get_terminal_pair/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 557:568 + +dfmInterface:get_terminal_pair/4 uses: +> builtin:,/2 +> builtin: = /2 + +----- Going Down dfmInterface:contains/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 594:599 + +dfmInterface:contains/3 uses: +> builtin: = /2 + +----- Going Down dfmInterface:find_an_arc/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 604:609 + +dfmInterface:find_an_arc/5 uses: +> builtin:,/2 + +----- Going Down dfmInterface:arc_to_pair/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 617:623 + +dfmInterface:arc_to_pair/4 uses: +> builtin:,/2 +> builtin: = /2 + +----- Going Down dfmInterface:walkForwardHelper/6 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 639:640 + +dfmInterface:walkForwardHelper/6 uses: +> dfmInterface:walkForward/6 +> > builtin:,/2 +> > builtin:(\+)/1 +> > lists:is_list/1 +> > builtin:member/2 + +----- Going Down dfmInterface:formatFacts/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 642:673 + +dfmInterface:formatFacts/2 uses: +> dfmInterface:formatInput/2 +> > builtin:,/2 +> dfmInterface:formatOutput/2 +> > builtin:,/2 + +----- Going Down dfmInterface:formatEdges/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 673:681 + +dfmInterface:formatEdges/2 uses: +> builtin:,/2 + +----- Going Down dfmInterface:formatDfmStmt/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 682:687 + +dfmInterface:formatDfmStmt/2 uses: +> builtin:,/2 + +----- Going Down dfmInterface:formatPiFunc/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 702:707 + +dfmInterface:formatPiFunc/2 uses: +> builtin:,/2 + +----- Going Down dfmInterface:formatPiSource/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 708:713 + +dfmInterface:formatPiSource/2 uses: +> builtin:,/2 + +----- Going Down dfmInterface:formatPiFuncSignature/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 714:719 + +dfmInterface:formatPiFuncSignature/2 uses: +> builtin:,/2 + +----- Going Down logicTranslationUtilities:findAllLoopsInProject/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +logicTranslationUtilities.pro 67:79 + +logicTranslationUtilities:findAllLoopsInProject/2 uses: +> builtin:findall/3 + +----- Going Down logicTranslationUtilities:findLoopWithNoUpstreamLoops/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +logicTranslationUtilities.pro 79:114 + +logicTranslationUtilities:findLoopWithNoUpstreamLoops/2 uses: +> builtin:do/2 + +----- Going Down logicTranslationUtilities:isBadLoop/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +logicTranslationUtilities.pro 114:118 + +logicTranslationUtilities:isBadLoop/3 uses: +> builtin:member/2 +> assert-logicTranslationUtilities:thisLoopIsNoGood/1 + +----- Going Down logicTranslationUtilities:prettyPrinter/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +logicTranslationUtilities.pro 159:164 + +logicTranslationUtilities:prettyPrinter/1 uses: +> logicTranslationUtilities:isomorphicConsolidate/3 +> > logicTranslationUtilities:isomorphicConsolidate/4 +> > > logicTranslationUtilities:consolidateTermFunctor/4 +> > > > builtin: =.. /2 +> > > > logicTranslationUtilities:consolidatePrimitive/5 +> > > > > builtin: = /2 +> > > > > solsticeUtility:generateAtom/2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:atom_concat/3 +> > > > > > builtin:is/2 +> > > > > > builtin:number_codes/2 +> > > > > > assert-solsticeUtility:atomNumber/2 +> > > > > > retract-solsticeUtility:atomNumber/2 +> > > > > builtin:member/2 +> > > > > builtin:number/1 +> > > > solsticeUtility:primitive/1 +> > > > > builtin: =.. /2 +> > > > > builtin:ground/1 +> > > > > lists:is_list/1 +> > > > > builtin:simple/1 +> > > logicTranslationUtilities:isomorphicConsolidate/4 ***** looping ***** +> > > solsticeUtility:subtermSelect/4 +> > > > builtin: =.. /2 +> > > > builtin:nonvar/1 +> > > > lists:same_length/2 +> > > > lists:select/4 +> > > > solsticeUtility:subtermSelect/4 ***** looping ***** +> > solsticeUtility:resetAtomGeneration/1 +> > > builtin:retractall/1 +> logicTranslationUtilities:prettyPrinter/2 +> > builtin: = /2 +> > solsticeUtility:atom_concat/2 +> > > lists:append/2 +> > > solsticeUtility:guarded_atom_codes/2 +> > > > builtin:atom_codes/2 +> > > > builtin:ground/1 +> > builtin:is/2 +> > builtin:nl/0 +> > logicTranslationUtilities:prettyPrinter/2 ***** looping ***** +> > logicTranslationUtilities:spaces/2 +> > > builtin: =< /2 +> > > solsticeUtility:atom_concat/2 +> > > > lists:append/2 +> > > > solsticeUtility:guarded_atom_codes/2 +> > > > > builtin:atom_codes/2 +> > > > > builtin:ground/1 +> > > builtin:is/2 +> > > logicTranslationUtilities:spaces/2 ***** looping ***** +> > builtin:write/1 +> > builtin:writeq/1 + +----- Going Down rankingFunction:maximum/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/rankingFunction.pro +rankingFunction.pro 59:64 + +rankingFunction:maximum/3 uses: +> builtin:if/3 + +----- Going Down rankingFunction:getMaxAndMinIterVarIsIncreasing/6 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/rankingFunction.pro +rankingFunction.pro 127:132 + +rankingFunction:getMaxAndMinIterVarIsIncreasing/6 uses: +> builtin:is/2 +> builtin:member/2 +> solsticeUtility:subtermMember/2 +> > builtin: =.. /2 +> > builtin:member/2 +> > builtin:nonvar/1 +> > solsticeUtility:subtermMember/2 ***** looping ***** + +----- Going Down rankingFunction:getVariableMaxIterations/10 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/rankingFunction.pro +rankingFunction.pro 66:91 + +rankingFunction:getVariableMaxIterations/10 uses: +> builtin:,/2 +> builtin: = /2 +> builtin: > /2 +> builtin:atom_codes/2 +> logicTranslationUtilities:drillIntoLoopBody/5 +> > builtin:,/2 +> > logicTranslationUtilities:drillIntoLoopBody/5 ***** looping ***** +> builtin:findall/3 +> rankingFunction:getFileSizeFromOntology/2 +> > builtin:atom_codes/2 +> > solsticeUtility:atom_concat/2 +> > > lists:append/2 +> > > solsticeUtility:guarded_atom_codes/2 +> > > > builtin:atom_codes/2 +> > > > builtin:ground/1 +> > builtin:atom_concat/3 +> > ontology:hasA/2 +> > > ontology:getDomain/1 +> > > ontology:internalHasA/3 +> > > > builtin:;/2 +> > > > undefined:internalIsA/3 +> > ontology:isA/2 +> > > ontology:getDomain/1 +> > > undefined:internalIsA/3 +> > builtin:number_codes/2 +> builtin:if/3 +> builtin:is/2 +> builtin:member/2 +> builtin:number_codes/2 +> solsticeUtility:subtermMember/2 +> > builtin: =.. /2 +> > builtin:member/2 +> > builtin:nonvar/1 +> > solsticeUtility:subtermMember/2 ***** looping ***** + +----- Going Down loopRewriter:rewriteLoop/7 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro +loopRewriter.pro 26:102 + +loopRewriter:rewriteLoop/7 uses: +> builtin: = /2 +> builtin:assert/1 +> loopRewriter:createEriksImagination/7 +> > builtin:,/2 +> > builtin: = /2 +> loopRewriter:createTraversalNodes/8 +> > builtin: =:= /2 +> > builtin: > /2 +> > builtin:append/3 +> > dfmTraversal:convertTermToAtom/2 +> > > builtin:atom_codes/2 +> > > undefined:write_to_codes/2 +> > loopRewriter:createTraversalNodes/8 ***** looping ***** +> > builtin:do/2 +> > builtin:is/2 +> > dfmTraversal:removeBrackets/2 +> > > builtin:append/3 +> > > builtin:atom_codes/2 +> logicTranslationUtilities:deleteDuplicates/3 +> > logicTranslationUtilities:deleteDuplicates/3 ***** looping ***** +> > builtin:if/3 +> builtin:do/2 +> builtin:findall/3 +> logicTranslationUtilities:getConsolidatedLoopBodyConstraints/3 +> > backSubstituter:mathSmash/2 +> > > builtin:do/2 +> > logicTranslator:processNonWhileNodes/4 +> > > builtin:,/2 +> > > builtin: = /2 +> > > dfmTraversal:get_module_from_nodeID/2 +> > > > builtin: = /2 +> > > > lists:append/2 +> > > > builtin:atom/1 +> > > > builtin:atom_codes/2 +> > > builtin:throw/1 +> > backSubstituter:subIt/2 +> > > builtin:do/2 +> > > builtin:if/3 +> rankingFunction:getNumIterations/8 +> > builtin: = /2 +> > builtin:do/2 +> > solsticeUtility:flattenList/2 +> > > builtin:append/3 +> > > solsticeUtility:flattenList/2 ***** looping ***** +> > builtin:if/3 +> > undefined:smtFormula/3 +> builtin:if/3 +> logicTranslator:processNonWhileNodes/4 +> > builtin:,/2 +> > builtin: = /2 +> > dfmTraversal:get_module_from_nodeID/2 +> > > builtin: = /2 +> > > lists:append/2 +> > > builtin:atom/1 +> > > builtin:atom_codes/2 +> > builtin:throw/1 +> builtin:retract/1 + +----- Going Down loopRewriter:modifyGlobalOuts/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro +loopRewriter.pro 175:186 + +loopRewriter:modifyGlobalOuts/3 uses: +> builtin:do/2 + +----- Going Down loopRewriter:createInsidePhis/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro +loopRewriter.pro 186:195 + +loopRewriter:createInsidePhis/2 uses: +> builtin: = /2 +> builtin:do/2 + +----- Going Down loopRewriter:getIterationVar/7 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/loopRewriter.pro +loopRewriter.pro 280:311 + +loopRewriter:getIterationVar/7 uses: +> builtin:,/2 +> builtin: = /2 +> builtin:(\+)/1 +> loopRewriter:constraintIsAssignment/2 +> > builtin: = /2 +> builtin:if/3 +> builtin:member/2 +> loopRewriter:searchForReadInLoop/4 +> > builtin: = /2 +> > logicTranslationUtilities:drillIntoLoopBody/5 +> > > builtin:,/2 +> > > logicTranslationUtilities:drillIntoLoopBody/5 ***** looping ***** +> > builtin:findall/3 +> solsticeUtility:subtermMember/2 +> > builtin: =.. /2 +> > builtin:member/2 +> > builtin:nonvar/1 +> > solsticeUtility:subtermMember/2 ***** looping ***** + +----- Going Down logicTranslator:constraintsGuaranteeStmtExecuted/6 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +logicTranslator.pro 23:36 + +logicTranslator:constraintsGuaranteeStmtExecuted/6 uses: +> logicTranslator:formatConstraints/2 +> > logicTranslator:formatConstraintsHelper/3 +> > > logicTranslator:formatConstraintsHelper/3 ***** looping ***** +> logicTranslationUtilities:patternDelete/3 +> > builtin: = /2 +> > builtin:copy_term/2 +> > logicTranslationUtilities:patternDelete/3 ***** looping ***** +> logicTranslator:processAllNodes/3 +> > builtin:append/3 +> > builtin:do/2 +> > builtin:findall/3 +> > solsticeUtility:flattenList/2 +> > > builtin:append/3 +> > > solsticeUtility:flattenList/2 ***** looping ***** +> > logicTranslator:nodesExecutionLogic/3 +> > > lists:append/2 +> > > undefined:nodeExecutionLogic/3 +> > > builtin:sort/2 +> > logicTranslationUtilities:patternDelete/3 +> > > builtin: = /2 +> > > builtin:copy_term/2 +> > > logicTranslationUtilities:patternDelete/3 ***** looping ***** +> > logicTranslator:processNonWhileNodes/4 +> > > builtin:,/2 +> > > builtin: = /2 +> > > dfmTraversal:get_module_from_nodeID/2 +> > > > builtin: = /2 +> > > > lists:append/2 +> > > > builtin:atom/1 +> > > > builtin:atom_codes/2 +> > > builtin:throw/1 +> > logicTranslator:processWhileNodes/4 +> > > builtin:,/2 +> > > builtin: = /2 +> > > dfmTraversal:get_module_from_nodeID/2 +> > > > builtin: = /2 +> > > > lists:append/2 +> > > > builtin:atom/1 +> > > > builtin:atom_codes/2 +> > undefined:subtract/3 +> dfmTraversal:find_all_upstream_nodes_inclusive/4 +> > builtin:do/2 +> > solsticeUtility:flattenList/2 +> > > builtin:append/3 +> > > solsticeUtility:flattenList/2 ***** looping ***** +> > dfmTraversal:getNodeSet/2 +> > > builtin:findall/3 +> > > builtin:sort/2 +> > undefined:list_to_set/2 +> smtSolver:smtFormula/3 + +----- Going Down logicTranslator:stmtExecutionGuaranteesConstraints/6 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +logicTranslator.pro 36:49 + +logicTranslator:stmtExecutionGuaranteesConstraints/6 uses: +> logicTranslator:formatConstraints/2 +> > logicTranslator:formatConstraintsHelper/3 +> > > logicTranslator:formatConstraintsHelper/3 ***** looping ***** +> logicTranslationUtilities:patternDelete/3 +> > builtin: = /2 +> > builtin:copy_term/2 +> > logicTranslationUtilities:patternDelete/3 ***** looping ***** +> logicTranslator:processAllNodes/3 +> > builtin:append/3 +> > builtin:do/2 +> > builtin:findall/3 +> > solsticeUtility:flattenList/2 +> > > builtin:append/3 +> > > solsticeUtility:flattenList/2 ***** looping ***** +> > logicTranslator:nodesExecutionLogic/3 +> > > lists:append/2 +> > > undefined:nodeExecutionLogic/3 +> > > builtin:sort/2 +> > logicTranslationUtilities:patternDelete/3 +> > > builtin: = /2 +> > > builtin:copy_term/2 +> > > logicTranslationUtilities:patternDelete/3 ***** looping ***** +> > logicTranslator:processNonWhileNodes/4 +> > > builtin:,/2 +> > > builtin: = /2 +> > > dfmTraversal:get_module_from_nodeID/2 +> > > > builtin: = /2 +> > > > lists:append/2 +> > > > builtin:atom/1 +> > > > builtin:atom_codes/2 +> > > builtin:throw/1 +> > logicTranslator:processWhileNodes/4 +> > > builtin:,/2 +> > > builtin: = /2 +> > > dfmTraversal:get_module_from_nodeID/2 +> > > > builtin: = /2 +> > > > lists:append/2 +> > > > builtin:atom/1 +> > > > builtin:atom_codes/2 +> > undefined:subtract/3 +> dfmTraversal:find_all_upstream_nodes_inclusive/4 +> > builtin:do/2 +> > solsticeUtility:flattenList/2 +> > > builtin:append/3 +> > > solsticeUtility:flattenList/2 ***** looping ***** +> > dfmTraversal:getNodeSet/2 +> > > builtin:findall/3 +> > > builtin:sort/2 +> > undefined:list_to_set/2 +> smtSolver:smtFormula/3 + +----- Going Down logicTranslator:stmtExecutionAndConstraintsIsPossible/6 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +logicTranslator.pro 49:59 + +logicTranslator:stmtExecutionAndConstraintsIsPossible/6 uses: +> builtin:append/3 +> logicTranslator:formatConstraints/2 +> > logicTranslator:formatConstraintsHelper/3 +> > > logicTranslator:formatConstraintsHelper/3 ***** looping ***** +> logicTranslationUtilities:patternDelete/3 +> > builtin: = /2 +> > builtin:copy_term/2 +> > logicTranslationUtilities:patternDelete/3 ***** looping ***** +> logicTranslator:processAllNodes/3 +> > builtin:append/3 +> > builtin:do/2 +> > builtin:findall/3 +> > solsticeUtility:flattenList/2 +> > > builtin:append/3 +> > > solsticeUtility:flattenList/2 ***** looping ***** +> > logicTranslator:nodesExecutionLogic/3 +> > > lists:append/2 +> > > undefined:nodeExecutionLogic/3 +> > > builtin:sort/2 +> > logicTranslationUtilities:patternDelete/3 +> > > builtin: = /2 +> > > builtin:copy_term/2 +> > > logicTranslationUtilities:patternDelete/3 ***** looping ***** +> > logicTranslator:processNonWhileNodes/4 +> > > builtin:,/2 +> > > builtin: = /2 +> > > dfmTraversal:get_module_from_nodeID/2 +> > > > builtin: = /2 +> > > > lists:append/2 +> > > > builtin:atom/1 +> > > > builtin:atom_codes/2 +> > > builtin:throw/1 +> > logicTranslator:processWhileNodes/4 +> > > builtin:,/2 +> > > builtin: = /2 +> > > dfmTraversal:get_module_from_nodeID/2 +> > > > builtin: = /2 +> > > > lists:append/2 +> > > > builtin:atom/1 +> > > > builtin:atom_codes/2 +> > undefined:subtract/3 +> dfmTraversal:find_all_upstream_nodes_inclusive/4 +> > builtin:do/2 +> > solsticeUtility:flattenList/2 +> > > builtin:append/3 +> > > solsticeUtility:flattenList/2 ***** looping ***** +> > dfmTraversal:getNodeSet/2 +> > > builtin:findall/3 +> > > builtin:sort/2 +> > undefined:list_to_set/2 +> smtSolver:smtFormula/3 + +----- Going Down logicTranslator:getWhileBodyNodes/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +logicTranslator.pro 115:137 + +logicTranslator:getWhileBodyNodes/4 uses: +> builtin:,/2 +> builtin: = /2 +> dfmTraversal:get_module_from_nodeID/2 +> > builtin: = /2 +> > lists:append/2 +> > builtin:atom/1 +> > builtin:atom_codes/2 + +----- Going Down logicTranslator:createFieldConstraints/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +logicTranslator.pro 500:513 + +logicTranslator:createFieldConstraints/4 uses: +> builtin: = /2 +> builtin: > /2 +> builtin:atom_codes/2 +> builtin:number_codes/2 +> builtin:sub_atom/5 + +----- Going Down logicTranslator:getFieldSizeFromOntology/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +logicTranslator.pro 527:543 + +logicTranslator:getFieldSizeFromOntology/5 uses: +> builtin:atom_codes/2 +> solsticeUtility:atom_concat/2 +> > lists:append/2 +> > solsticeUtility:guarded_atom_codes/2 +> > > builtin:atom_codes/2 +> > > builtin:ground/1 +> log:log/2 +> > log:log/3 +> > > builtin: =< /2 +> > > log:getLogLevel/1 +> > > > log:get_flag/2 +> > > > > log:flag/2 +> > > log:logType_logLevel/2 +> > > > builtin:number/1 +> > > builtin:nl/0 +> > > log:timestamp/1 +> > > > builtin:atom_concat/3 +> > > > undefined:datime/1 +> > > > log:number_formattedAtom/2 +> > > > > builtin:atom_chars/2 +> > > > > log:formatChars/2 +> > > > > builtin:number_chars/2 +> > > builtin:write/1 +> builtin:number_codes/2 +> solsticeUtility:splitAtom/3 +> > builtin: = /2 +> > builtin:atom_codes/2 +> > solsticeUtility:characterCodesToAtoms/2 +> > > builtin:(\+)/1 +> > > builtin:atom_codes/2 +> > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > lists:is_list/1 +> > solsticeUtility:splitCharacterCodes/3 +> > > lists:append/2 +> > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> logicTranslator:traverseOntology/3 +> > ontology:hasA/2 +> > > ontology:getDomain/1 +> > > ontology:internalHasA/3 +> > > > builtin:;/2 +> > > > undefined:internalIsA/3 +> > builtin:if/3 +> > ontology:isA/2 +> > > ontology:getDomain/1 +> > > undefined:internalIsA/3 +> > logicTranslator:traverseOntology/3 ***** looping ***** + +----- Going Down logicTranslator:processNode/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +logicTranslator.pro 177:191 + +logicTranslator:processNode/5 uses: +> builtin:,/2 +> builtin: = /2 +> builtin: =.. /2 +> builtin:append/3 +> logicTranslator:createConcatConstraints/6 +> > builtin: = /2 +> > builtin:append/3 +> > logicTranslator:createConcatConstraints/6 ***** looping ***** +> > builtin:if/3 +> logicTranslator:createSubstringConstraints/6 +> > builtin: = /2 +> > builtin:append/3 +> > logicTranslator:createSubstringConstraints/6 ***** looping ***** +> > lists:delete/3 +> > builtin:if/3 +> logicTranslator:formatConstraints/2 +> > logicTranslator:formatConstraintsHelper/3 +> > > logicTranslator:formatConstraintsHelper/3 ***** looping ***** +> logicTranslator:getPhiConditions/7 +> > builtin: = /2 +> > builtin:append/3 +> > logicTranslator:getPhiConditions/7 ***** looping ***** +> logicTranslator:getVariableOrValue/6 +> > builtin:,/2 +> > builtin: = /2 +> > builtin:atom/1 +> > builtin:if/3 +> > builtin:number/1 +> > builtin:throw/1 +> logicTranslator:negate/3 +> > builtin: = /2 +> > logicTranslator:formatConstraints/2 +> > > logicTranslator:formatConstraintsHelper/3 +> > > > logicTranslator:formatConstraintsHelper/3 ***** looping ***** +> logicTranslator:processArithmeticExpression/6 +> > builtin: = /2 +> > builtin: =.. /2 +> > lists:append/2 +> > builtin:atom/1 +> > builtin:atom_codes/2 +> > logicTranslator:getVariableOrValue/6 +> > > builtin:,/2 +> > > builtin: = /2 +> > > builtin:atom/1 +> > > builtin:if/3 +> > > builtin:number/1 +> > > builtin:throw/1 +> > builtin:member/2 +> > builtin:number/1 +> > logicTranslator:processArithmeticExpression/6 ***** looping ***** +> logicTranslator:processConditional/6 +> > builtin:append/3 +> > logicTranslator:formatConstraints/2 +> > > logicTranslator:formatConstraintsHelper/3 +> > > > logicTranslator:formatConstraintsHelper/3 ***** looping ***** +> > builtin:if/3 +> > logicTranslator:processConditional/6 ***** looping ***** +> logicTranslator:processRead/10 +> > builtin:,/2 +> builtin:throw/1 + +----- Going Down logicTranslator:getConditionConstraints/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +logicTranslator.pro 669:677 + +logicTranslator:getConditionConstraints/5 uses: +> builtin:append/3 +> logicTranslator:getVariableOrValue/6 +> > builtin:,/2 +> > builtin: = /2 +> > builtin:atom/1 +> > builtin:if/3 +> > builtin:number/1 +> > builtin:throw/1 + +----- Going Down logicTranslator:constrainArgument/8 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +logicTranslator.pro 759:768 + +logicTranslator:constrainArgument/8 uses: +> builtin: = /2 +> builtin:atom_codes/2 +> logicTranslator:getVariableOrValue/6 +> > builtin:,/2 +> > builtin: = /2 +> > builtin:atom/1 +> > builtin:if/3 +> > builtin:number/1 +> > builtin:throw/1 +> logicTranslationUtilities:prependToStackHead/3 +> > builtin:atom/1 +> > builtin:atom_concat/3 +> undefined:write_to_codes/2 + +----- Going Down logicTranslator:constrainExternalArgument/9 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +logicTranslator.pro 768:775 + +logicTranslator:constrainExternalArgument/9 uses: +> builtin: = /2 +> builtin:atom_codes/2 +> logicTranslator:getVariableOrValue/6 +> > builtin:,/2 +> > builtin: = /2 +> > builtin:atom/1 +> > builtin:if/3 +> > builtin:number/1 +> > builtin:throw/1 +> logicTranslationUtilities:prependToStackHead/3 +> > builtin:atom/1 +> > builtin:atom_concat/3 +> undefined:write_to_codes/2 + +----- Going Down logicTranslator:nodeFunction/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +logicTranslator.pro 794:799 + +logicTranslator:nodeFunction/2 uses: +> builtin: = /2 +> solsticeUtility:atom_concat/2 +> > lists:append/2 +> > solsticeUtility:guarded_atom_codes/2 +> > > builtin:atom_codes/2 +> > > builtin:ground/1 + +----- Going Down logicTranslator:nodeFunctionAndParentFunction/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslator.pro +logicTranslator.pro 799:817 + +logicTranslator:nodeFunctionAndParentFunction/5 uses: +> builtin: = /2 +> solsticeUtility:atom_concat/2 +> > lists:append/2 +> > solsticeUtility:guarded_atom_codes/2 +> > > builtin:atom_codes/2 +> > > builtin:ground/1 +> logicTranslator:callConditionality/6 +> > builtin:,/2 +> builtin:dif/2 + +----- Going Down feasibilityService:feasibilityServiceNode/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/feasibilityService.pro +feasibilityService.pro 33:51 + +feasibilityService:feasibilityServiceNode/4 uses: +> builtin:append/3 +> builtin:do/2 +> feasibilityService:feasibilityService/4 +> > builtin:append/3 +> > builtin:do/2 +> > feasibilityService:feasibilityService/4 ***** looping ***** +> > feasibilityService:getNodes/2 +> > > builtin:append/3 +> > > builtin:findall/3 +> > > builtin:sort/2 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> > builtin:nl/0 +> > reasoningEngine:resolveFeasibility/4 +> > > reasoningEngine:resolveFeasibility/5 +> > > > builtin:(\+)/1 +> > > > builtin:append/3 +> > > > reasoningEngine:appendPeriod/2 +> > > > > builtin:append/3 +> > > > logicTranslator:formatConstraints/2 +> > > > > logicTranslator:formatConstraintsHelper/3 +> > > > > > logicTranslator:formatConstraintsHelper/3 ***** looping ***** +> > > > reasoningEngine:list_executed_nodes/3 +> > > > > reasoningEngine:list_executed_nodes/3 ***** looping ***** +> > > > logicTranslator:processAllNodes/3 +> > > > > builtin:append/3 +> > > > > builtin:do/2 +> > > > > builtin:findall/3 +> > > > > solsticeUtility:flattenList/2 +> > > > > > builtin:append/3 +> > > > > > solsticeUtility:flattenList/2 ***** looping ***** +> > > > > logicTranslator:nodesExecutionLogic/3 +> > > > > > lists:append/2 +> > > > > > undefined:nodeExecutionLogic/3 +> > > > > > builtin:sort/2 +> > > > > logicTranslationUtilities:patternDelete/3 +> > > > > > builtin: = /2 +> > > > > > builtin:copy_term/2 +> > > > > > logicTranslationUtilities:patternDelete/3 ***** looping ***** +> > > > > logicTranslator:processNonWhileNodes/4 +> > > > > > builtin:,/2 +> > > > > > builtin: = /2 +> > > > > > dfmTraversal:get_module_from_nodeID/2 +> > > > > > > builtin: = /2 +> > > > > > > lists:append/2 +> > > > > > > builtin:atom/1 +> > > > > > > builtin:atom_codes/2 +> > > > > > builtin:throw/1 +> > > > > logicTranslator:processWhileNodes/4 +> > > > > > builtin:,/2 +> > > > > > builtin: = /2 +> > > > > > dfmTraversal:get_module_from_nodeID/2 +> > > > > > > builtin: = /2 +> > > > > > > lists:append/2 +> > > > > > > builtin:atom/1 +> > > > > > > builtin:atom_codes/2 +> > > > > undefined:subtract/3 +> > > > undefined:read_from_codes/2 +> > > > reasoningEngine:resolveFeasibilityHelper/6 +> > > > > builtin: = /2 +> > > > > builtin:append/3 +> > > > > reasoningEngine:list_executed_nodes/3 +> > > > > > reasoningEngine:list_executed_nodes/3 ***** looping ***** +> > > > > reasoningEngine:resolveFeasibilityHelper/6 ***** looping ***** +> > > > > undefined:smtFormula/3 +> > > > > solsticeUtility:structToList/2 +> > > > > > solsticeUtility:structToList/2 ***** looping ***** +> > > > > > builtin:var/1 +> > > > > reasoningEngine:subtract/3 +> > > > > > builtin: = /2 +> > > > > > lists:selectchk/3 +> > > > > > reasoningEngine:subtract/3 ***** looping ***** +> > > > builtin:sort/2 +> > > > builtin:throw/1 +> > feasibilityService:setFeasibility/3 +> > > builtin:member/2 +> > > feasibilityService:setFeasibility/3 ***** looping ***** +> > feasibilityService:whileLoopsExist/2 +> > > builtin:,/2 +> > > builtin: = /2 +> > > dfmTraversal:get_module_from_nodeID/2 +> > > > builtin: = /2 +> > > > lists:append/2 +> > > > builtin:atom/1 +> > > > builtin:atom_codes/2 +> > > builtin:member/2 +> > builtin:writeq/1 +> feasibilityService:getNodes/2 +> > builtin:append/3 +> > builtin:findall/3 +> > builtin:sort/2 +> log:log/2 +> > log:log/3 +> > > builtin: =< /2 +> > > log:getLogLevel/1 +> > > > log:get_flag/2 +> > > > > log:flag/2 +> > > log:logType_logLevel/2 +> > > > builtin:number/1 +> > > builtin:nl/0 +> > > log:timestamp/1 +> > > > builtin:atom_concat/3 +> > > > undefined:datime/1 +> > > > log:number_formattedAtom/2 +> > > > > builtin:atom_chars/2 +> > > > > log:formatChars/2 +> > > > > builtin:number_chars/2 +> > > builtin:write/1 +> builtin:nl/0 +> undefined:resolveFeasibilityOfNode/4 +> feasibilityService:setFeasibility/3 +> > builtin:member/2 +> > feasibilityService:setFeasibility/3 ***** looping ***** +> feasibilityService:whileLoopsExist/2 +> > builtin:,/2 +> > builtin: = /2 +> > dfmTraversal:get_module_from_nodeID/2 +> > > builtin: = /2 +> > > lists:append/2 +> > > builtin:atom/1 +> > > builtin:atom_codes/2 +> > builtin:member/2 +> builtin:writeq/1 + +----- Going Down feasibilityService:testFeasibilityOfNode/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/feasibilityService.pro +feasibilityService.pro 51:65 + +feasibilityService:testFeasibilityOfNode/5 uses: +> builtin: = /2 +> feasibilityService:getNodesWithFeasible/2 +> > builtin:append/3 +> > builtin:findall/3 +> > builtin:sort/2 +> builtin:is/2 +> log:log/2 +> > log:log/3 +> > > builtin: =< /2 +> > > log:getLogLevel/1 +> > > > log:get_flag/2 +> > > > > log:flag/2 +> > > log:logType_logLevel/2 +> > > > builtin:number/1 +> > > builtin:nl/0 +> > > log:timestamp/1 +> > > > builtin:atom_concat/3 +> > > > undefined:datime/1 +> > > > log:number_formattedAtom/2 +> > > > > builtin:atom_chars/2 +> > > > > log:formatChars/2 +> > > > > builtin:number_chars/2 +> > > builtin:write/1 +> reasoningEngine:resolveFeasibilityOfNode/5 +> > builtin:append/3 +> > logicTranslator:formatConstraints/2 +> > > logicTranslator:formatConstraintsHelper/3 +> > > > logicTranslator:formatConstraintsHelper/3 ***** looping ***** +> > builtin:if/3 +> > reasoningEngine:list_executed_nodes/3 +> > > reasoningEngine:list_executed_nodes/3 ***** looping ***** +> > logicTranslator:processAllNodes/3 +> > > builtin:append/3 +> > > builtin:do/2 +> > > builtin:findall/3 +> > > solsticeUtility:flattenList/2 +> > > > builtin:append/3 +> > > > solsticeUtility:flattenList/2 ***** looping ***** +> > > logicTranslator:nodesExecutionLogic/3 +> > > > lists:append/2 +> > > > undefined:nodeExecutionLogic/3 +> > > > builtin:sort/2 +> > > logicTranslationUtilities:patternDelete/3 +> > > > builtin: = /2 +> > > > builtin:copy_term/2 +> > > > logicTranslationUtilities:patternDelete/3 ***** looping ***** +> > > logicTranslator:processNonWhileNodes/4 +> > > > builtin:,/2 +> > > > builtin: = /2 +> > > > dfmTraversal:get_module_from_nodeID/2 +> > > > > builtin: = /2 +> > > > > lists:append/2 +> > > > > builtin:atom/1 +> > > > > builtin:atom_codes/2 +> > > > builtin:throw/1 +> > > logicTranslator:processWhileNodes/4 +> > > > builtin:,/2 +> > > > builtin: = /2 +> > > > dfmTraversal:get_module_from_nodeID/2 +> > > > > builtin: = /2 +> > > > > lists:append/2 +> > > > > builtin:atom/1 +> > > > > builtin:atom_codes/2 +> > > undefined:subtract/3 +> > builtin:sort/2 +> > solsticeUtility:structToList/2 +> > > solsticeUtility:structToList/2 ***** looping ***** +> > > builtin:var/1 + +----- Going Down feasibilityService:getInfeasibleNodes/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/feasibilityService.pro +feasibilityService.pro 65:79 + +feasibilityService:getInfeasibleNodes/4 uses: +> builtin: = /2 +> feasibilityService:getNodesWithFeasible/2 +> > builtin:append/3 +> > builtin:findall/3 +> > builtin:sort/2 +> log:log/2 +> > log:log/3 +> > > builtin: =< /2 +> > > log:getLogLevel/1 +> > > > log:get_flag/2 +> > > > > log:flag/2 +> > > log:logType_logLevel/2 +> > > > builtin:number/1 +> > > builtin:nl/0 +> > > log:timestamp/1 +> > > > builtin:atom_concat/3 +> > > > undefined:datime/1 +> > > > log:number_formattedAtom/2 +> > > > > builtin:atom_chars/2 +> > > > > log:formatChars/2 +> > > > > builtin:number_chars/2 +> > > builtin:write/1 +> reasoningEngine:resolveFeasibility/5 +> > builtin:(\+)/1 +> > builtin:append/3 +> > reasoningEngine:appendPeriod/2 +> > > builtin:append/3 +> > logicTranslator:formatConstraints/2 +> > > logicTranslator:formatConstraintsHelper/3 +> > > > logicTranslator:formatConstraintsHelper/3 ***** looping ***** +> > reasoningEngine:list_executed_nodes/3 +> > > reasoningEngine:list_executed_nodes/3 ***** looping ***** +> > logicTranslator:processAllNodes/3 +> > > builtin:append/3 +> > > builtin:do/2 +> > > builtin:findall/3 +> > > solsticeUtility:flattenList/2 +> > > > builtin:append/3 +> > > > solsticeUtility:flattenList/2 ***** looping ***** +> > > logicTranslator:nodesExecutionLogic/3 +> > > > lists:append/2 +> > > > undefined:nodeExecutionLogic/3 +> > > > builtin:sort/2 +> > > logicTranslationUtilities:patternDelete/3 +> > > > builtin: = /2 +> > > > builtin:copy_term/2 +> > > > logicTranslationUtilities:patternDelete/3 ***** looping ***** +> > > logicTranslator:processNonWhileNodes/4 +> > > > builtin:,/2 +> > > > builtin: = /2 +> > > > dfmTraversal:get_module_from_nodeID/2 +> > > > > builtin: = /2 +> > > > > lists:append/2 +> > > > > builtin:atom/1 +> > > > > builtin:atom_codes/2 +> > > > builtin:throw/1 +> > > logicTranslator:processWhileNodes/4 +> > > > builtin:,/2 +> > > > builtin: = /2 +> > > > dfmTraversal:get_module_from_nodeID/2 +> > > > > builtin: = /2 +> > > > > lists:append/2 +> > > > > builtin:atom/1 +> > > > > builtin:atom_codes/2 +> > > undefined:subtract/3 +> > undefined:read_from_codes/2 +> > reasoningEngine:resolveFeasibilityHelper/6 +> > > builtin: = /2 +> > > builtin:append/3 +> > > reasoningEngine:list_executed_nodes/3 +> > > > reasoningEngine:list_executed_nodes/3 ***** looping ***** +> > > reasoningEngine:resolveFeasibilityHelper/6 ***** looping ***** +> > > undefined:smtFormula/3 +> > > solsticeUtility:structToList/2 +> > > > solsticeUtility:structToList/2 ***** looping ***** +> > > > builtin:var/1 +> > > reasoningEngine:subtract/3 +> > > > builtin: = /2 +> > > > lists:selectchk/3 +> > > > reasoningEngine:subtract/3 ***** looping ***** +> > builtin:sort/2 +> > builtin:throw/1 + +----- Going Down feasibilityService:whileNodesExist/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/feasibilityService.pro +feasibilityService.pro 103:120 + +feasibilityService:whileNodesExist/4 uses: +> builtin:,/2 +> builtin: = /2 +> dfmTraversal:get_module_from_nodeID/2 +> > builtin: = /2 +> > lists:append/2 +> > builtin:atom/1 +> > builtin:atom_codes/2 + +----- Going Down applicationFunction:feasibilityOfNode/5 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +applicationFunction.pro 139:156 + +applicationFunction:feasibilityOfNode/5 uses: +> appFnInterface:getAppFnDomain/1 +> appFnInterface:loadApplicationFunctionsIfNecessary/0 +> > undefined:isLoaded/0 +> > appFnInterface:loadAllApplicationFunctions/1 +> > > appFnInterface:cleanUp/0 +> > > > appFnInterface:getAppFnDomain/1 +> > > > builtin:retractall/1 +> > > lists:exclude/3 +> > > file_systems:file_members_of_directory/2 +> > > appFnInterface:retrieveRepresentation/1 +> > > > builtin: = /2 +> > > > builtin:close/1 +> > > > appFnInterface:getAppFnDomain/1 +> > > > solsticeUtility:isHiddenFile/1 +> > > > > builtin: = /2 +> > > > > builtin:sub_atom/5 +> > > > appFnInterface:loadRepresentation/2 +> > > > > builtin:(\+)/1 +> > > > > builtin:assert/1 +> > > > > appFnInterface:loadRepresentation/2 ***** looping ***** +> > > > > builtin:read/2 +> > > > builtin:open/3 +> > sessionManager:getApplicationModelPath/1 +> > > sessionManager:getApplicationModelPath/2 +> > > > builtin:,/2 +> > > > sessionManager:getSessionNamespace/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> builtin:,/2 +> builtin:(\+)/1 +> log:log/2 +> > log:log/3 +> > > builtin: =< /2 +> > > log:getLogLevel/1 +> > > > log:get_flag/2 +> > > > > log:flag/2 +> > > log:logType_logLevel/2 +> > > > builtin:number/1 +> > > builtin:nl/0 +> > > log:timestamp/1 +> > > > builtin:atom_concat/3 +> > > > undefined:datime/1 +> > > > log:number_formattedAtom/2 +> > > > > builtin:atom_chars/2 +> > > > > log:formatChars/2 +> > > > > builtin:number_chars/2 +> > > builtin:write/1 +> builtin:throw/1 + +----- Going Down applicationFunction:applyUserConstraintsToAppFunction/4 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +applicationFunction.pro 165:186 + +applicationFunction:applyUserConstraintsToAppFunction/4 uses: +> appFnInterface:getAppFnDomain/1 +> appFnInterface:loadApplicationFunctionsIfNecessary/0 +> > undefined:isLoaded/0 +> > appFnInterface:loadAllApplicationFunctions/1 +> > > appFnInterface:cleanUp/0 +> > > > appFnInterface:getAppFnDomain/1 +> > > > builtin:retractall/1 +> > > lists:exclude/3 +> > > file_systems:file_members_of_directory/2 +> > > appFnInterface:retrieveRepresentation/1 +> > > > builtin: = /2 +> > > > builtin:close/1 +> > > > appFnInterface:getAppFnDomain/1 +> > > > solsticeUtility:isHiddenFile/1 +> > > > > builtin: = /2 +> > > > > builtin:sub_atom/5 +> > > > appFnInterface:loadRepresentation/2 +> > > > > builtin:(\+)/1 +> > > > > builtin:assert/1 +> > > > > appFnInterface:loadRepresentation/2 ***** looping ***** +> > > > > builtin:read/2 +> > > > builtin:open/3 +> > sessionManager:getApplicationModelPath/1 +> > > sessionManager:getApplicationModelPath/2 +> > > > builtin:,/2 +> > > > sessionManager:getSessionNamespace/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> builtin:,/2 +> builtin:(\+)/1 +> log:log/2 +> > log:log/3 +> > > builtin: =< /2 +> > > log:getLogLevel/1 +> > > > log:get_flag/2 +> > > > > log:flag/2 +> > > log:logType_logLevel/2 +> > > > builtin:number/1 +> > > builtin:nl/0 +> > > log:timestamp/1 +> > > > builtin:atom_concat/3 +> > > > undefined:datime/1 +> > > > log:number_formattedAtom/2 +> > > > > builtin:atom_chars/2 +> > > > > log:formatChars/2 +> > > > > builtin:number_chars/2 +> > > builtin:write/1 +> builtin:throw/1 + +----- Going Down applicationFunction:isAReadStatement/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +applicationFunction.pro 753:762 + +applicationFunction:isAReadStatement/3 uses: +> query_interface:queryVerify/4 +> > builtin:member/2 +> > query_interface:query/4 +> > > builtin: = /2 +> > > builtin:(\+)/1 +> > > query_interface:conjunction/6 +> > > > builtin: = /2 +> > > > query_interface:conjunction/6 ***** looping ***** +> > > > query_interface:constraint/5 +> > > > > builtin: =.. /2 +> > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > query_interface:constraint/2 +> > > > > query_interface:constraintType/3 +> > > > > builtin:findall/3 +> > > > > query_interface:findallConstraint/6 +> > > > > > lists:append/2 +> > > > > > query_interface:constructMapTerm/6 +> > > > > > > builtin: =.. /2 +> > > > > > builtin:findall/3 +> > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > query_interface:predicate/2 +> > > > > > > builtin: = /2 +> > > > > > > builtin: =.. /2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:findall/3 +> > > > > > > builtin:functor/3 +> > > > > > > errorHandler:logError/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > builtin:atom/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > builtin:number_codes/2 +> > > > > > > builtin:throw/1 +> > > > > query_interface:predicate/2 +> > > > > > builtin: = /2 +> > > > > > builtin: =.. /2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:atom_concat/3 +> > > > > > builtin:findall/3 +> > > > > > builtin:functor/3 +> > > > > > errorHandler:logError/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > builtin:atom/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > builtin:number_codes/2 +> > > > > > builtin:throw/1 +> > > > > lists:remove_dups/2 +> > > > lists:is_list/1 +> > > > errorHandler:logError/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > errorHandler:logErrorDetails/1 +> > > > > > builtin:atom/1 +> > > > > > builtin:atom_concat/3 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > query_interface:overlap/3 +> > > > > builtin:member/2 +> > > > > query_interface:overlap/3 ***** looping ***** +> > > > builtin:throw/1 +> > > query_interface:constraint/5 +> > > > builtin: =.. /2 +> > > > query_interface:conjunction/6 +> > > > > builtin: = /2 +> > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > query_interface:constraint/5 ***** looping ***** +> > > > > lists:is_list/1 +> > > > > errorHandler:logError/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > errorHandler:logErrorDetails/1 +> > > > > > > builtin:atom/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > query_interface:overlap/3 +> > > > > > builtin:member/2 +> > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > builtin:throw/1 +> > > > query_interface:constraint/2 +> > > > query_interface:constraintType/3 +> > > > builtin:findall/3 +> > > > query_interface:findallConstraint/6 +> > > > > lists:append/2 +> > > > > query_interface:constructMapTerm/6 +> > > > > > builtin: =.. /2 +> > > > > builtin:findall/3 +> > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > query_interface:predicate/2 +> > > > > > builtin: = /2 +> > > > > > builtin: =.. /2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:atom_concat/3 +> > > > > > builtin:findall/3 +> > > > > > builtin:functor/3 +> > > > > > errorHandler:logError/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > builtin:atom/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > builtin:number_codes/2 +> > > > > > builtin:throw/1 +> > > > query_interface:predicate/2 +> > > > > builtin: = /2 +> > > > > builtin: =.. /2 +> > > > > builtin:atom_codes/2 +> > > > > builtin:atom_concat/3 +> > > > > builtin:findall/3 +> > > > > builtin:functor/3 +> > > > > errorHandler:logError/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > errorHandler:logErrorDetails/1 +> > > > > > > builtin:atom/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > builtin:number_codes/2 +> > > > > builtin:throw/1 +> > > > lists:remove_dups/2 +> > > query_interface:disjunction/5 +> > > > builtin: = /2 +> > > > builtin:(\+)/1 +> > > > lists:append/2 +> > > > query_interface:conjunction/6 +> > > > > builtin: = /2 +> > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > query_interface:constraint/5 +> > > > > > builtin: =.. /2 +> > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > query_interface:constraint/2 +> > > > > > query_interface:constraintType/3 +> > > > > > builtin:findall/3 +> > > > > > query_interface:findallConstraint/6 +> > > > > > > lists:append/2 +> > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > builtin: =.. /2 +> > > > > > > builtin:findall/3 +> > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > query_interface:predicate/2 +> > > > > > > > builtin: = /2 +> > > > > > > > builtin: =.. /2 +> > > > > > > > builtin:atom_codes/2 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > builtin:findall/3 +> > > > > > > > builtin:functor/3 +> > > > > > > > errorHandler:logError/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > builtin:atom/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > builtin:number_codes/2 +> > > > > > > > builtin:throw/1 +> > > > > > query_interface:predicate/2 +> > > > > > > builtin: = /2 +> > > > > > > builtin: =.. /2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:findall/3 +> > > > > > > builtin:functor/3 +> > > > > > > errorHandler:logError/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > builtin:atom/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > builtin:number_codes/2 +> > > > > > > builtin:throw/1 +> > > > > > lists:remove_dups/2 +> > > > > lists:is_list/1 +> > > > > errorHandler:logError/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > errorHandler:logErrorDetails/1 +> > > > > > > builtin:atom/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > query_interface:overlap/3 +> > > > > > builtin:member/2 +> > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > builtin:throw/1 +> > > > query_interface:disjunction/5 ***** looping ***** +> > > > errorHandler:logError/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > errorHandler:logErrorDetails/1 +> > > > > > builtin:atom/1 +> > > > > > builtin:atom_concat/3 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > lists:remove_dups/2 +> > > > builtin:throw/1 +> > > lists:is_list/1 +> > > errorHandler:logError/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > errorHandler:logErrorDetails/1 +> > > > > builtin:atom/1 +> > > > > builtin:atom_concat/3 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > builtin:throw/1 + +----- Going Down applicationFunction:isAScreenStatement/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +applicationFunction.pro 762:765 + +applicationFunction:isAScreenStatement/3 uses: +> query_interface:queryVerify/4 +> > builtin:member/2 +> > query_interface:query/4 +> > > builtin: = /2 +> > > builtin:(\+)/1 +> > > query_interface:conjunction/6 +> > > > builtin: = /2 +> > > > query_interface:conjunction/6 ***** looping ***** +> > > > query_interface:constraint/5 +> > > > > builtin: =.. /2 +> > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > query_interface:constraint/2 +> > > > > query_interface:constraintType/3 +> > > > > builtin:findall/3 +> > > > > query_interface:findallConstraint/6 +> > > > > > lists:append/2 +> > > > > > query_interface:constructMapTerm/6 +> > > > > > > builtin: =.. /2 +> > > > > > builtin:findall/3 +> > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > query_interface:predicate/2 +> > > > > > > builtin: = /2 +> > > > > > > builtin: =.. /2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:findall/3 +> > > > > > > builtin:functor/3 +> > > > > > > errorHandler:logError/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > builtin:atom/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > builtin:number_codes/2 +> > > > > > > builtin:throw/1 +> > > > > query_interface:predicate/2 +> > > > > > builtin: = /2 +> > > > > > builtin: =.. /2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:atom_concat/3 +> > > > > > builtin:findall/3 +> > > > > > builtin:functor/3 +> > > > > > errorHandler:logError/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > builtin:atom/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > builtin:number_codes/2 +> > > > > > builtin:throw/1 +> > > > > lists:remove_dups/2 +> > > > lists:is_list/1 +> > > > errorHandler:logError/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > errorHandler:logErrorDetails/1 +> > > > > > builtin:atom/1 +> > > > > > builtin:atom_concat/3 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > query_interface:overlap/3 +> > > > > builtin:member/2 +> > > > > query_interface:overlap/3 ***** looping ***** +> > > > builtin:throw/1 +> > > query_interface:constraint/5 +> > > > builtin: =.. /2 +> > > > query_interface:conjunction/6 +> > > > > builtin: = /2 +> > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > query_interface:constraint/5 ***** looping ***** +> > > > > lists:is_list/1 +> > > > > errorHandler:logError/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > errorHandler:logErrorDetails/1 +> > > > > > > builtin:atom/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > query_interface:overlap/3 +> > > > > > builtin:member/2 +> > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > builtin:throw/1 +> > > > query_interface:constraint/2 +> > > > query_interface:constraintType/3 +> > > > builtin:findall/3 +> > > > query_interface:findallConstraint/6 +> > > > > lists:append/2 +> > > > > query_interface:constructMapTerm/6 +> > > > > > builtin: =.. /2 +> > > > > builtin:findall/3 +> > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > query_interface:predicate/2 +> > > > > > builtin: = /2 +> > > > > > builtin: =.. /2 +> > > > > > builtin:atom_codes/2 +> > > > > > builtin:atom_concat/3 +> > > > > > builtin:findall/3 +> > > > > > builtin:functor/3 +> > > > > > errorHandler:logError/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > builtin:atom/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > builtin:number_codes/2 +> > > > > > builtin:throw/1 +> > > > query_interface:predicate/2 +> > > > > builtin: = /2 +> > > > > builtin: =.. /2 +> > > > > builtin:atom_codes/2 +> > > > > builtin:atom_concat/3 +> > > > > builtin:findall/3 +> > > > > builtin:functor/3 +> > > > > errorHandler:logError/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > errorHandler:logErrorDetails/1 +> > > > > > > builtin:atom/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > builtin:number_codes/2 +> > > > > builtin:throw/1 +> > > > lists:remove_dups/2 +> > > query_interface:disjunction/5 +> > > > builtin: = /2 +> > > > builtin:(\+)/1 +> > > > lists:append/2 +> > > > query_interface:conjunction/6 +> > > > > builtin: = /2 +> > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > query_interface:constraint/5 +> > > > > > builtin: =.. /2 +> > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > query_interface:constraint/2 +> > > > > > query_interface:constraintType/3 +> > > > > > builtin:findall/3 +> > > > > > query_interface:findallConstraint/6 +> > > > > > > lists:append/2 +> > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > builtin: =.. /2 +> > > > > > > builtin:findall/3 +> > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > query_interface:predicate/2 +> > > > > > > > builtin: = /2 +> > > > > > > > builtin: =.. /2 +> > > > > > > > builtin:atom_codes/2 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > builtin:findall/3 +> > > > > > > > builtin:functor/3 +> > > > > > > > errorHandler:logError/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > builtin:atom/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > builtin:number_codes/2 +> > > > > > > > builtin:throw/1 +> > > > > > query_interface:predicate/2 +> > > > > > > builtin: = /2 +> > > > > > > builtin: =.. /2 +> > > > > > > builtin:atom_codes/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:findall/3 +> > > > > > > builtin:functor/3 +> > > > > > > errorHandler:logError/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > builtin:atom/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > builtin:number_codes/2 +> > > > > > > builtin:throw/1 +> > > > > > lists:remove_dups/2 +> > > > > lists:is_list/1 +> > > > > errorHandler:logError/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > errorHandler:logErrorDetails/1 +> > > > > > > builtin:atom/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > query_interface:overlap/3 +> > > > > > builtin:member/2 +> > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > builtin:throw/1 +> > > > query_interface:disjunction/5 ***** looping ***** +> > > > errorHandler:logError/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > errorHandler:logErrorDetails/1 +> > > > > > builtin:atom/1 +> > > > > > builtin:atom_concat/3 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > lists:remove_dups/2 +> > > > builtin:throw/1 +> > > lists:is_list/1 +> > > errorHandler:logError/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > errorHandler:logErrorDetails/1 +> > > > > builtin:atom/1 +> > > > > builtin:atom_concat/3 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > builtin:throw/1 + +----- Going Down applicationFunction:createNodeVarMap/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +applicationFunction.pro 765:778 + +applicationFunction:createNodeVarMap/3 uses: +> builtin: = /2 +> builtin:(\+)/1 +> builtin:append/3 +> builtin:member/2 +> lists:selectchk/3 + +----- Going Down applicationFunction:loadArcs/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +applicationFunction.pro 830:837 + +applicationFunction:loadArcs/1 uses: +> lists:append/2 +> builtin:ensure_loaded/1 +> lists:exclude/3 +> file_systems:file_members_of_directory/2 +> applicationFunction:get_file_path/2 +> > builtin:(\+)/1 +> > builtin:atom_concat/3 + +----- Going Down appFnInterface:queryAppFn/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/appFnInterface.pro +appFnInterface.pro 19:32 + +appFnInterface:queryAppFn/3 uses: +> builtin:(\+)/1 +> sessionManager:getAppFnPath/1 +> > sessionManager:getAppFnPath/2 +> > > builtin:,/2 +> > > sessionManager:getSessionNamespace/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > sessionManager:getCurrentProject/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> appFnInterface:loadApplicationFunctions/1 +> > builtin: = /2 +> > lists:exclude/3 +> > file_systems:file_members_of_directory/2 +> > applicationFunction:generateApplicationFunctions/1 +> > > applicationFunction:generateApplicationFunctions/2 +> > > > applicationFunction:constructApplicationFunctions/3 +> > > > > builtin: = /2 +> > > > > builtin:atom_concat/3 +> > > > > applicationFunction:createAppFunctionsFrame/5 +> > > > > > builtin: = /2 +> > > > > applicationFunction:generateEncodingAppFunctions/5 +> > > > > > builtin:append/3 +> > > > > > applicationFunction:generateAppFunctionsFromStmt/7 +> > > > > > > builtin:append/3 +> > > > > > > applicationFunction:generateAppFunctionFromVar/7 +> > > > > > > > builtin:if/3 +> > > > > > > > builtin:length/2 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > applicationFunction:resolveApplicationFunctions/6 +> > > > > > > > > builtin: = /2 +> > > > > > > > > applicationFunction:formatApplicationFunction/5 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > applicationFunction:getAndIncrementAppFunctionCount/1 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > applicationFunction:appFunctionCount/1 +> > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > builtin:retractall/1 +> > > > > > > > > > > assert-applicationFunction:appFunctionCount/1 +> > > > > > > > > > applicationFunction:isInLoop/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > lists:scanlist/4 +> > > > > > > > > applicationFunction:getConcept/5 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > applicationFunction:getPathVarConcepts/2 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > applicationFunction:retrieveConcept/2 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > applicationFunction:retrieveConceptByStmt/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > lists:nth1/3 +> > > > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > > builtin:throw/1 +> > > > > > > > > builtin:member/2 +> > > > > > > > > applicationFunction:processDB2Position/6 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > log:log/2 +> > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > lists:head/2 +> > > > > > > > > > lists:nth1/3 +> > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:throw/1 +> > > > > > > > > builtin:throw/1 +> > > > > > > > applicationFunction:resolveConeOfInfluence/5 +> > > > > > > > > builtin:(\+)/1 +> > > > > > > > > builtin: \= /2 +> > > > > > > > > applicationFunction:filter_nodes/3 +> > > > > > > > > > builtin: \== /2 +> > > > > > > > > > applicationFunction:filter_nodes/3 ***** looping ***** +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > builtin:sub_atom/5 +> > > > > > > > > builtin:findall/3 +> > > > > > > > > builtin:member/2 +> > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > applicationFunction:removeNodeVarDups/2 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > lists:remove_dups/2 +> > > > > > > > user:skip_me/1 +> > > > > > > applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +> > > > > > > applicationFunction:getVariablePosition/7 +> > > > > > > > builtin: = /2 +> > > > > > > > builtin:is/2 +> > > > > > > > applicationFunction:isDBAppFnName/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > lists:is_list/1 +> > > > > > > > builtin:member/2 +> > > > > > > > lists:nth1/3 +> > > > > > > builtin:member/2 +> > > > > > > builtin:throw/1 +> > > > > > applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +> > > > > > applicationFunction:getEncodingVariables/2 +> > > > > > > builtin:member/2 +> > > > > > > builtin:throw/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > applicationFunction:generateInfoTransAppFunctions/5 +> > > > > > builtin:append/3 +> > > > > > applicationFunction:generateAppFunctionsFromStmt/7 +> > > > > > > builtin:append/3 +> > > > > > > applicationFunction:generateAppFunctionFromVar/7 +> > > > > > > > builtin:if/3 +> > > > > > > > builtin:length/2 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > applicationFunction:resolveApplicationFunctions/6 +> > > > > > > > > builtin: = /2 +> > > > > > > > > applicationFunction:formatApplicationFunction/5 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > applicationFunction:getAndIncrementAppFunctionCount/1 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > applicationFunction:appFunctionCount/1 +> > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > builtin:retractall/1 +> > > > > > > > > > > assert-applicationFunction:appFunctionCount/1 +> > > > > > > > > > applicationFunction:isInLoop/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > lists:scanlist/4 +> > > > > > > > > applicationFunction:getConcept/5 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > applicationFunction:getPathVarConcepts/2 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > applicationFunction:retrieveConcept/2 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > applicationFunction:retrieveConceptByStmt/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > lists:nth1/3 +> > > > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > > builtin:throw/1 +> > > > > > > > > builtin:member/2 +> > > > > > > > > applicationFunction:processDB2Position/6 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > log:log/2 +> > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > lists:head/2 +> > > > > > > > > > lists:nth1/3 +> > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:throw/1 +> > > > > > > > > builtin:throw/1 +> > > > > > > > applicationFunction:resolveConeOfInfluence/5 +> > > > > > > > > builtin:(\+)/1 +> > > > > > > > > builtin: \= /2 +> > > > > > > > > applicationFunction:filter_nodes/3 +> > > > > > > > > > builtin: \== /2 +> > > > > > > > > > applicationFunction:filter_nodes/3 ***** looping ***** +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > builtin:sub_atom/5 +> > > > > > > > > builtin:findall/3 +> > > > > > > > > builtin:member/2 +> > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > applicationFunction:removeNodeVarDups/2 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > lists:remove_dups/2 +> > > > > > > > user:skip_me/1 +> > > > > > > applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +> > > > > > > applicationFunction:getVariablePosition/7 +> > > > > > > > builtin: = /2 +> > > > > > > > builtin:is/2 +> > > > > > > > applicationFunction:isDBAppFnName/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > lists:is_list/1 +> > > > > > > > builtin:member/2 +> > > > > > > > lists:nth1/3 +> > > > > > > builtin:member/2 +> > > > > > > builtin:throw/1 +> > > > > > applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +> > > > > > applicationFunction:getWriteVariables/2 +> > > > > > > builtin:member/2 +> > > > > > > builtin:throw/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > sessionManager:getAppFnPath/1 +> > > > > > sessionManager:getAppFnPath/2 +> > > > > > > builtin:,/2 +> > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getCurrentProject/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > appFnUtilities:getDFMStatementInfo/2 +> > > > > > lists:append/2 +> > > > > > appFnUtilities:getDfmInfo/7 +> > > > > > > builtin:append/3 +> > > > > > > appFnUtilities:getDB2DeleteStatementInfo/1 +> > > > > > > > builtin:findall/3 +> > > > > > > appFnUtilities:getDB2ReadStatementInfo/1 +> > > > > > > > builtin:findall/3 +> > > > > > > appFnUtilities:getDB2WriteStatementInfo/1 +> > > > > > > > builtin:findall/3 +> > > > > > > appFnUtilities:getDeleteStatementInfo/1 +> > > > > > > > builtin:findall/3 +> > > > > > > appFnUtilities:getReadStatementInfo/1 +> > > > > > > > builtin:findall/3 +> > > > > > > appFnUtilities:getScreenStatementInfo/2 +> > > > > > > > builtin:findall/3 +> > > > > > > appFnUtilities:getWriteStatementInfo/1 +> > > > > > > > builtin:findall/3 +> > > > > builtin:ground/1 +> > > > > builtin:length/2 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > applicationFunction:resetAppFunctionCount/0 +> > > > > > builtin:retractall/1 +> > > > > applicationFunction:writeAppFunctionsToFile/2 +> > > > > > builtin:close/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:open/3 +> > > > > > builtin:write/2 +> > > > > > applicationFunction:writeAppFunctionsHelper/2 +> > > > > > > builtin:nl/1 +> > > > > > > builtin:write/2 +> > > > > > > applicationFunction:writeAppFunctionsHelper/2 ***** looping ***** +> > > > > > > builtin:writeq/2 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > applicationFunction:setUpAppFnProject/1 +> > > > > applicationModel:generateApplicationModelForCurrentProject/0 +> > > > > > applicationModel:assertFactsIntoApplicationModel/3 +> > > > > > > applicationModel:artifactFilter/1 +> > > > > > > > applicationModel:artifactExtension/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > applicationModel:assertFactsIntoApplicationModelFromArtifact/3 +> > > > > > > > applicationModel:artifactExtension/1 +> > > > > > > > applicationModel:assertModuleIntoApplicationModel/4 +> > > > > > > > > applicationModel:assertTermAndReadNext/5 +> > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > builtin:assert/1 +> > > > > > > > > > applicationModel:assertTermAndReadNext/5 ***** looping ***** +> > > > > > > > > > applicationModel:localizeNodeName/3 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > applicationModel:localizeNodeName/3 ***** looping ***** +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > solsticeUtility:subtermMember/2 +> > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > builtin:nonvar/1 +> > > > > > > > > > > > solsticeUtility:subtermMember/2 ***** looping ***** +> > > > > > > > > > > solsticeUtility:subtermSelect/4 +> > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > builtin:nonvar/1 +> > > > > > > > > > > > lists:same_length/2 +> > > > > > > > > > > > lists:select/4 +> > > > > > > > > > > > solsticeUtility:subtermSelect/4 ***** looping ***** +> > > > > > > > > > builtin:read/2 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > builtin:close/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > builtin:open/3 +> > > > > > > > > builtin:read/2 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > file_systems:file_members_of_directory/3 +> > > > > > builtin:atom_concat/3 +> > > > > > applicationModel:cleanApplicationModelForCurrentProject/0 +> > > > > > > applicationModel:cleanApplicationModelForProject/1 +> > > > > > > > builtin:abolish/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > applicationModel:ensureApplicationModelDirectoryExists/0 +> > > > > > > sessionManager:getApplicationModelPath/1 +> > > > > > > > sessionManager:getApplicationModelPath/2 +> > > > > > > > > builtin:,/2 +> > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > builtin:if/3 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > applicationModel:writeApplicationModelToFile/0 +> > > > > > > builtin:append/3 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:close/1 +> > > > > > > builtin:findall/3 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > applicationModel:nlWrite/2 +> > > > > > > > builtin:nl/1 +> > > > > > > > builtin:write/2 +> > > > > > > > builtin:writeq/2 +> > > > > > > builtin:open/3 +> > > > > > > builtin:sort/2 +> > > > > > > sessionManager:getApplicationModelPath/1 +> > > > > > > > sessionManager:getApplicationModelPath/2 +> > > > > > > > > builtin:,/2 +> > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getCFMPath/1 +> > > > > > > sessionManager:getCFMPath/2 +> > > > > > > > builtin:,/2 +> > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getCurrentProject/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getDFMPath/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getDFMPath/2 +> > > > > > > > builtin:,/2 +> > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > dfmTraversal:build_dfm_traversal_graph/2 +> > > > > > builtin:atom_concat/3 +> > > > > > sessionManager:getArcPath/1 +> > > > > > > sessionManager:getArcPath/2 +> > > > > > > > builtin:,/2 +> > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > builtin:if/3 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > sessionManager:getApplicationModelPath/1 +> > > > > > sessionManager:getApplicationModelPath/2 +> > > > > > > builtin:,/2 +> > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getCurrentProject/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > sessionManager:getArcPath/1 +> > > > > > sessionManager:getArcPath/2 +> > > > > > > builtin:,/2 +> > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getCurrentProject/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > sessionManager:getCurrentProject/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > sessionManager:hasBeenBuilt/2 +> > > > > > builtin: \= /2 +> > > > > > file_systems:file_members_of_directory/2 +> > > > > > lists:include/3 +> > > applicationFunction:smtSolverDefault/1 +> > sessionManager:getCurrentProject/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > appFnInterface:loadAllApplicationFunctions/1 +> > > appFnInterface:cleanUp/0 +> > > > appFnInterface:getAppFnDomain/1 +> > > > builtin:retractall/1 +> > > lists:exclude/3 +> > > file_systems:file_members_of_directory/2 +> > > appFnInterface:retrieveRepresentation/1 +> > > > builtin: = /2 +> > > > builtin:close/1 +> > > > appFnInterface:getAppFnDomain/1 +> > > > solsticeUtility:isHiddenFile/1 +> > > > > builtin: = /2 +> > > > > builtin:sub_atom/5 +> > > > appFnInterface:loadRepresentation/2 +> > > > > builtin:(\+)/1 +> > > > > builtin:assert/1 +> > > > > appFnInterface:loadRepresentation/2 ***** looping ***** +> > > > > builtin:read/2 +> > > > builtin:open/3 +> appFnInterface:processQuery/3 +> > appFnInterface:processConstraintListQuery/4 +> > > builtin: = /2 +> > > appFnInterface:processConstraint/3 +> > > > builtin:,/2 +> > > > builtin: = /2 +> > > > appFnInterface:getAppFnDomain/1 +> > > appFnInterface:processConstraintListQuery/4 ***** looping ***** +> > appFnInterface:processNoConstraintQuery/2 +> > > builtin:,/2 +> > > builtin:findall/3 +> > > appFnInterface:getAppFnDomain/1 + +----- Going Down transactionInterface:getEventName/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interfaces/Representation/transactionInterface.pro +transactionInterface.pro 105:109 + +transactionInterface:getEventName/3 uses: +> builtin: = /2 +> solsticeUtility:atom_concat/2 +> > lists:append/2 +> > solsticeUtility:guarded_atom_codes/2 +> > > builtin:atom_codes/2 +> > > builtin:ground/1 +> lists:is_list/1 +> builtin:member/2 +> solsticeUtility:termToAtom/2 +> > builtin:atom_codes/2 +> > undefined:write_to_codes/2 + +----- Going Down sessionManager:getSourcePath/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +sessionManager.pro 63:74 + +sessionManager:getSourcePath/1 uses: +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> sessionManager:getSourcePath/2 +> > builtin:,/2 +> > sessionManager:getSessionNamespace/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 + +----- Going Down sessionManager:getCFMPath/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +sessionManager.pro 88:98 + +sessionManager:getCFMPath/3 uses: +> builtin: = /2 +> solsticeUtility:atom_concat/2 +> > lists:append/2 +> > solsticeUtility:guarded_atom_codes/2 +> > > builtin:atom_codes/2 +> > > builtin:ground/1 +> file_systems:file_members_of_directory/2 +> sessionManager:getCFMPath/1 +> > sessionManager:getCFMPath/2 +> > > builtin:,/2 +> > > sessionManager:getSessionNamespace/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > sessionManager:getCurrentProject/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> builtin:ground/1 +> builtin:member/2 + +----- Going Down sessionManager:getDFMPath/3 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +sessionManager.pro 112:122 + +sessionManager:getDFMPath/3 uses: +> builtin: = /2 +> solsticeUtility:atom_concat/2 +> > lists:append/2 +> > solsticeUtility:guarded_atom_codes/2 +> > > builtin:atom_codes/2 +> > > builtin:ground/1 +> file_systems:file_members_of_directory/2 +> sessionManager:getDFMPath/1 +> > sessionManager:getCurrentProject/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > sessionManager:getDFMPath/2 +> > > builtin:,/2 +> > > sessionManager:getSessionNamespace/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> builtin:ground/1 +> log:log/2 +> > log:log/3 +> > > builtin: =< /2 +> > > log:getLogLevel/1 +> > > > log:get_flag/2 +> > > > > log:flag/2 +> > > log:logType_logLevel/2 +> > > > builtin:number/1 +> > > builtin:nl/0 +> > > log:timestamp/1 +> > > > builtin:atom_concat/3 +> > > > undefined:datime/1 +> > > > log:number_formattedAtom/2 +> > > > > builtin:atom_chars/2 +> > > > > log:formatChars/2 +> > > > > builtin:number_chars/2 +> > > builtin:write/1 +> builtin:member/2 + +----- Going Down sessionManager:getScreensPath/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +sessionManager.pro 177:183 + +sessionManager:getScreensPath/1 uses: +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> sessionManager:getScreenPath/2 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 + +----- Going Down sessionManager:setUpCurrentProject/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +sessionManager.pro 244:259 + +sessionManager:setUpCurrentProject/1 uses: +> builtin:,/2 +> sessionManager:getSessionNamespace/1 +> log:log/2 +> > log:log/3 +> > > builtin: =< /2 +> > > log:getLogLevel/1 +> > > > log:get_flag/2 +> > > > > log:flag/2 +> > > log:logType_logLevel/2 +> > > > builtin:number/1 +> > > builtin:nl/0 +> > > log:timestamp/1 +> > > > builtin:atom_concat/3 +> > > > undefined:datime/1 +> > > > log:number_formattedAtom/2 +> > > > > builtin:atom_chars/2 +> > > > > log:formatChars/2 +> > > > > builtin:number_chars/2 +> > > builtin:write/1 +> builtin:nl/0 +> builtin:throw/1 +> builtin:write/1 + +----- Going Down sessionManager:setUpCurrentProject/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +sessionManager.pro 264:269 + +sessionManager:setUpCurrentProject/2 uses: +> builtin:,/2 +> sessionManager:assertRepresentations/0 +> > sessionManager:getAppFnPath/1 +> > > sessionManager:getAppFnPath/2 +> > > > builtin:,/2 +> > > > sessionManager:getSessionNamespace/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > sessionManager:getApplicationModelPath/1 +> > > sessionManager:getApplicationModelPath/2 +> > > > builtin:,/2 +> > > > sessionManager:getSessionNamespace/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > sessionManager:getArcPath/1 +> > > sessionManager:getArcPath/2 +> > > > builtin:,/2 +> > > > sessionManager:getSessionNamespace/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > sessionManager:getOntologyPath/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > sessionManager:getOntologyPath/2 +> > > > builtin:,/2 +> > > > sessionManager:getSessionNamespace/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > sessionManager:getTransactionPath/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > sessionManager:getTransactionPath/2 +> > > > builtin:,/2 +> > > > sessionManager:getSessionNamespace/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > sessionManager:hasBeenBuilt/1 +> > > file_systems:file_exists/1 +> > sessionManager:hasBeenBuilt/2 +> > > builtin: \= /2 +> > > file_systems:file_members_of_directory/2 +> > > lists:include/3 +> > ontology:instantiateFactsFromPath/1 +> > > ontology:cleanUpOntologyFacts/0 +> > > > ontology:getDomain/1 +> > > > builtin:retractall/1 +> > > ontology:convertToRepresentation/1 +> > > > builtin: = /2 +> > > > builtin:close/1 +> > > > ontology:createRepresentation/2 +> > > > > builtin:(\+)/1 +> > > > > builtin:assert/1 +> > > > > ontology:createRepresentation/2 ***** looping ***** +> > > > > builtin:read/2 +> > > > ontology:getDomain/1 +> > > > builtin:open/3 +> > > > builtin:sub_atom/5 +> > > file_systems:file_members_of_directory/2 +> > appFnInterface:loadApplicationFunctions/1 +> > > builtin: = /2 +> > > lists:exclude/3 +> > > file_systems:file_members_of_directory/2 +> > > applicationFunction:generateApplicationFunctions/1 +> > > > applicationFunction:generateApplicationFunctions/2 +> > > > > applicationFunction:constructApplicationFunctions/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom_concat/3 +> > > > > > applicationFunction:createAppFunctionsFrame/5 +> > > > > > > builtin: = /2 +> > > > > > applicationFunction:generateEncodingAppFunctions/5 +> > > > > > > builtin:append/3 +> > > > > > > applicationFunction:generateAppFunctionsFromStmt/7 +> > > > > > > > builtin:append/3 +> > > > > > > > applicationFunction:generateAppFunctionFromVar/7 +> > > > > > > > > builtin:if/3 +> > > > > > > > > builtin:length/2 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > applicationFunction:resolveApplicationFunctions/6 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > applicationFunction:formatApplicationFunction/5 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > applicationFunction:getAndIncrementAppFunctionCount/1 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > applicationFunction:appFunctionCount/1 +> > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > builtin:retractall/1 +> > > > > > > > > > > > assert-applicationFunction:appFunctionCount/1 +> > > > > > > > > > > applicationFunction:isInLoop/2 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > lists:scanlist/4 +> > > > > > > > > > applicationFunction:getConcept/5 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > log:log/2 +> > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > applicationFunction:getPathVarConcepts/2 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > applicationFunction:retrieveConcept/2 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > applicationFunction:retrieveConceptByStmt/3 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > lists:nth1/3 +> > > > > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > applicationFunction:processDB2Position/6 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > lists:head/2 +> > > > > > > > > > > lists:nth1/3 +> > > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:throw/1 +> > > > > > > > > applicationFunction:resolveConeOfInfluence/5 +> > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > builtin: \= /2 +> > > > > > > > > > applicationFunction:filter_nodes/3 +> > > > > > > > > > > builtin: \== /2 +> > > > > > > > > > > applicationFunction:filter_nodes/3 ***** looping ***** +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > builtin:sub_atom/5 +> > > > > > > > > > builtin:findall/3 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > applicationFunction:removeNodeVarDups/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > log:log/2 +> > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > user:skip_me/1 +> > > > > > > > applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +> > > > > > > > applicationFunction:getVariablePosition/7 +> > > > > > > > > builtin: = /2 +> > > > > > > > > builtin:is/2 +> > > > > > > > > applicationFunction:isDBAppFnName/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > lists:is_list/1 +> > > > > > > > > builtin:member/2 +> > > > > > > > > lists:nth1/3 +> > > > > > > > builtin:member/2 +> > > > > > > > builtin:throw/1 +> > > > > > > applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +> > > > > > > applicationFunction:getEncodingVariables/2 +> > > > > > > > builtin:member/2 +> > > > > > > > builtin:throw/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > applicationFunction:generateInfoTransAppFunctions/5 +> > > > > > > builtin:append/3 +> > > > > > > applicationFunction:generateAppFunctionsFromStmt/7 +> > > > > > > > builtin:append/3 +> > > > > > > > applicationFunction:generateAppFunctionFromVar/7 +> > > > > > > > > builtin:if/3 +> > > > > > > > > builtin:length/2 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > applicationFunction:resolveApplicationFunctions/6 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > applicationFunction:formatApplicationFunction/5 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > applicationFunction:getAndIncrementAppFunctionCount/1 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > applicationFunction:appFunctionCount/1 +> > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > builtin:retractall/1 +> > > > > > > > > > > > assert-applicationFunction:appFunctionCount/1 +> > > > > > > > > > > applicationFunction:isInLoop/2 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > lists:scanlist/4 +> > > > > > > > > > applicationFunction:getConcept/5 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > log:log/2 +> > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > applicationFunction:getPathVarConcepts/2 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > applicationFunction:retrieveConcept/2 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > applicationFunction:retrieveConceptByStmt/3 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > lists:nth1/3 +> > > > > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > applicationFunction:processDB2Position/6 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > lists:head/2 +> > > > > > > > > > > lists:nth1/3 +> > > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:throw/1 +> > > > > > > > > applicationFunction:resolveConeOfInfluence/5 +> > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > builtin: \= /2 +> > > > > > > > > > applicationFunction:filter_nodes/3 +> > > > > > > > > > > builtin: \== /2 +> > > > > > > > > > > applicationFunction:filter_nodes/3 ***** looping ***** +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > builtin:sub_atom/5 +> > > > > > > > > > builtin:findall/3 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > applicationFunction:removeNodeVarDups/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > log:log/2 +> > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > user:skip_me/1 +> > > > > > > > applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +> > > > > > > > applicationFunction:getVariablePosition/7 +> > > > > > > > > builtin: = /2 +> > > > > > > > > builtin:is/2 +> > > > > > > > > applicationFunction:isDBAppFnName/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > lists:is_list/1 +> > > > > > > > > builtin:member/2 +> > > > > > > > > lists:nth1/3 +> > > > > > > > builtin:member/2 +> > > > > > > > builtin:throw/1 +> > > > > > > applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +> > > > > > > applicationFunction:getWriteVariables/2 +> > > > > > > > builtin:member/2 +> > > > > > > > builtin:throw/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getAppFnPath/1 +> > > > > > > sessionManager:getAppFnPath/2 +> > > > > > > > builtin:,/2 +> > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > appFnUtilities:getDFMStatementInfo/2 +> > > > > > > lists:append/2 +> > > > > > > appFnUtilities:getDfmInfo/7 +> > > > > > > > builtin:append/3 +> > > > > > > > appFnUtilities:getDB2DeleteStatementInfo/1 +> > > > > > > > > builtin:findall/3 +> > > > > > > > appFnUtilities:getDB2ReadStatementInfo/1 +> > > > > > > > > builtin:findall/3 +> > > > > > > > appFnUtilities:getDB2WriteStatementInfo/1 +> > > > > > > > > builtin:findall/3 +> > > > > > > > appFnUtilities:getDeleteStatementInfo/1 +> > > > > > > > > builtin:findall/3 +> > > > > > > > appFnUtilities:getReadStatementInfo/1 +> > > > > > > > > builtin:findall/3 +> > > > > > > > appFnUtilities:getScreenStatementInfo/2 +> > > > > > > > > builtin:findall/3 +> > > > > > > > appFnUtilities:getWriteStatementInfo/1 +> > > > > > > > > builtin:findall/3 +> > > > > > builtin:ground/1 +> > > > > > builtin:length/2 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > applicationFunction:resetAppFunctionCount/0 +> > > > > > > builtin:retractall/1 +> > > > > > applicationFunction:writeAppFunctionsToFile/2 +> > > > > > > builtin:close/1 +> > > > > > > builtin:memberchk/2 +> > > > > > > builtin:open/3 +> > > > > > > builtin:write/2 +> > > > > > > applicationFunction:writeAppFunctionsHelper/2 +> > > > > > > > builtin:nl/1 +> > > > > > > > builtin:write/2 +> > > > > > > > applicationFunction:writeAppFunctionsHelper/2 ***** looping ***** +> > > > > > > > builtin:writeq/2 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > applicationFunction:setUpAppFnProject/1 +> > > > > > applicationModel:generateApplicationModelForCurrentProject/0 +> > > > > > > applicationModel:assertFactsIntoApplicationModel/3 +> > > > > > > > applicationModel:artifactFilter/1 +> > > > > > > > > applicationModel:artifactExtension/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > applicationModel:assertFactsIntoApplicationModelFromArtifact/3 +> > > > > > > > > applicationModel:artifactExtension/1 +> > > > > > > > > applicationModel:assertModuleIntoApplicationModel/4 +> > > > > > > > > > applicationModel:assertTermAndReadNext/5 +> > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > applicationModel:assertTermAndReadNext/5 ***** looping ***** +> > > > > > > > > > > applicationModel:localizeNodeName/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > applicationModel:localizeNodeName/3 ***** looping ***** +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > solsticeUtility:subtermMember/2 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > builtin:nonvar/1 +> > > > > > > > > > > > > solsticeUtility:subtermMember/2 ***** looping ***** +> > > > > > > > > > > > solsticeUtility:subtermSelect/4 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:nonvar/1 +> > > > > > > > > > > > > lists:same_length/2 +> > > > > > > > > > > > > lists:select/4 +> > > > > > > > > > > > > solsticeUtility:subtermSelect/4 ***** looping ***** +> > > > > > > > > > > builtin:read/2 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > builtin:close/1 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > builtin:open/3 +> > > > > > > > > > builtin:read/2 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > file_systems:file_members_of_directory/3 +> > > > > > > builtin:atom_concat/3 +> > > > > > > applicationModel:cleanApplicationModelForCurrentProject/0 +> > > > > > > > applicationModel:cleanApplicationModelForProject/1 +> > > > > > > > > builtin:abolish/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > applicationModel:ensureApplicationModelDirectoryExists/0 +> > > > > > > > sessionManager:getApplicationModelPath/1 +> > > > > > > > > sessionManager:getApplicationModelPath/2 +> > > > > > > > > > builtin:,/2 +> > > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > builtin:if/3 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > applicationModel:writeApplicationModelToFile/0 +> > > > > > > > builtin:append/3 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > builtin:close/1 +> > > > > > > > builtin:findall/3 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > applicationModel:nlWrite/2 +> > > > > > > > > builtin:nl/1 +> > > > > > > > > builtin:write/2 +> > > > > > > > > builtin:writeq/2 +> > > > > > > > builtin:open/3 +> > > > > > > > builtin:sort/2 +> > > > > > > > sessionManager:getApplicationModelPath/1 +> > > > > > > > > sessionManager:getApplicationModelPath/2 +> > > > > > > > > > builtin:,/2 +> > > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCFMPath/1 +> > > > > > > > sessionManager:getCFMPath/2 +> > > > > > > > > builtin:,/2 +> > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getDFMPath/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getDFMPath/2 +> > > > > > > > > builtin:,/2 +> > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > dfmTraversal:build_dfm_traversal_graph/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > sessionManager:getArcPath/1 +> > > > > > > > sessionManager:getArcPath/2 +> > > > > > > > > builtin:,/2 +> > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > builtin:if/3 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getApplicationModelPath/1 +> > > > > > > sessionManager:getApplicationModelPath/2 +> > > > > > > > builtin:,/2 +> > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getArcPath/1 +> > > > > > > sessionManager:getArcPath/2 +> > > > > > > > builtin:,/2 +> > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getCurrentProject/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > sessionManager:hasBeenBuilt/2 +> > > > > > > builtin: \= /2 +> > > > > > > file_systems:file_members_of_directory/2 +> > > > > > > lists:include/3 +> > > > applicationFunction:smtSolverDefault/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > appFnInterface:loadAllApplicationFunctions/1 +> > > > appFnInterface:cleanUp/0 +> > > > > appFnInterface:getAppFnDomain/1 +> > > > > builtin:retractall/1 +> > > > lists:exclude/3 +> > > > file_systems:file_members_of_directory/2 +> > > > appFnInterface:retrieveRepresentation/1 +> > > > > builtin: = /2 +> > > > > builtin:close/1 +> > > > > appFnInterface:getAppFnDomain/1 +> > > > > solsticeUtility:isHiddenFile/1 +> > > > > > builtin: = /2 +> > > > > > builtin:sub_atom/5 +> > > > > appFnInterface:loadRepresentation/2 +> > > > > > builtin:(\+)/1 +> > > > > > builtin:assert/1 +> > > > > > appFnInterface:loadRepresentation/2 ***** looping ***** +> > > > > > builtin:read/2 +> > > > > builtin:open/3 +> > applicationModel:loadApplicationModelForCurrentProject/0 +> > > builtin:current_predicate/2 +> > > file_systems:file_members_of_directory/2 +> > > lists:include/3 +> > > applicationModel:retrieveRepresentation/2 +> > > > builtin: = /2 +> > > > builtin:close/1 +> > > > applicationModel:loadRepresentation/2 +> > > > > builtin:(\+)/1 +> > > > > builtin:assert/1 +> > > > > applicationModel:loadRepresentation/2 ***** looping ***** +> > > > > builtin:read/2 +> > > > builtin:open/3 +> > > > builtin:sub_atom/5 +> > > builtin:throw/1 +> > > sessionManager:getApplicationModelPath/1 +> > > > sessionManager:getApplicationModelPath/2 +> > > > > builtin:,/2 +> > > > > sessionManager:getSessionNamespace/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > sessionManager:getCurrentProject/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > sessionManager:loadArcs/1 +> > > lists:append/2 +> > > builtin:ensure_loaded/1 +> > > lists:exclude/3 +> > > file_systems:file_members_of_directory/2 +> > > sessionManager:getTestingFlag/1 +> > > sessionManager:get_file_path/2 +> > > > builtin:(\+)/1 +> > > > builtin:atom_concat/3 +> > transactionInterface:loadTransactionsForCurrentProject/0 +> > > transactionInterface:cleanUp/0 +> > > > transactionInterface:getTransactionDomain/1 +> > > > builtin:retractall/1 +> > > file_systems:file_exists/1 +> > > transactionInterface:getTransactionDomain/1 +> > > sessionManager:getTransactionPath/1 +> > > > sessionManager:getCurrentProject/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > sessionManager:getTransactionPath/2 +> > > > > builtin:,/2 +> > > > > sessionManager:getSessionNamespace/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > transactionInterface:loadRepresentation/2 +> > > > builtin:(\+)/1 +> > > > builtin:assert/1 +> > > > transactionInterface:loadRepresentation/2 ***** looping ***** +> > > > builtin:read/2 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > > builtin:open/3 +> sessionManager:cleanUpRepresentations/0 +> > appFnInterface:cleanUp/0 +> > > appFnInterface:getAppFnDomain/1 +> > > builtin:retractall/1 +> > ontology:cleanUpOntologyFacts/0 +> > > ontology:getDomain/1 +> > > builtin:retractall/1 +> > transactionInterface:cleanUp/0 +> > > transactionInterface:getTransactionDomain/1 +> > > builtin:retractall/1 +> sessionManager:getSessionNamespace/1 +> undefined:isSetUp/1 +> sessionManager:setCurrentProject/1 +> > builtin:assert/1 +> > sessionManager:getSessionNamespace/1 +> > builtin:ground/1 +> > builtin:retractall/1 +> sessionManager:setProjectPath/2 +> > builtin:assert/1 +> > sessionManager:getSessionNamespace/1 +> > builtin:ground/1 +> > builtin:retractall/1 +> builtin:throw/1 + +----- Going Down sessionManager:removeSessionCurrentProject/0 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +sessionManager.pro 320:325 + +sessionManager:removeSessionCurrentProject/0 uses: +> sessionManager:getSessionNamespace/1 +> builtin:retractall/1 + +----- Going Down sessionManager:removeSessionProjectPath/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +sessionManager.pro 325:329 + +sessionManager:removeSessionProjectPath/1 uses: +> sessionManager:getSessionNamespace/1 +> builtin:retractall/1 + +----- Going Down sessionManager:rebuildRepresentations/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +sessionManager.pro 329:339 + +sessionManager:rebuildRepresentations/1 uses: +> sessionManager:assertRepresentations/0 +> > sessionManager:getAppFnPath/1 +> > > sessionManager:getAppFnPath/2 +> > > > builtin:,/2 +> > > > sessionManager:getSessionNamespace/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > sessionManager:getApplicationModelPath/1 +> > > sessionManager:getApplicationModelPath/2 +> > > > builtin:,/2 +> > > > sessionManager:getSessionNamespace/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > sessionManager:getArcPath/1 +> > > sessionManager:getArcPath/2 +> > > > builtin:,/2 +> > > > sessionManager:getSessionNamespace/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > sessionManager:getOntologyPath/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > sessionManager:getOntologyPath/2 +> > > > builtin:,/2 +> > > > sessionManager:getSessionNamespace/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > sessionManager:getTransactionPath/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > sessionManager:getTransactionPath/2 +> > > > builtin:,/2 +> > > > sessionManager:getSessionNamespace/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > sessionManager:hasBeenBuilt/1 +> > > file_systems:file_exists/1 +> > sessionManager:hasBeenBuilt/2 +> > > builtin: \= /2 +> > > file_systems:file_members_of_directory/2 +> > > lists:include/3 +> > ontology:instantiateFactsFromPath/1 +> > > ontology:cleanUpOntologyFacts/0 +> > > > ontology:getDomain/1 +> > > > builtin:retractall/1 +> > > ontology:convertToRepresentation/1 +> > > > builtin: = /2 +> > > > builtin:close/1 +> > > > ontology:createRepresentation/2 +> > > > > builtin:(\+)/1 +> > > > > builtin:assert/1 +> > > > > ontology:createRepresentation/2 ***** looping ***** +> > > > > builtin:read/2 +> > > > ontology:getDomain/1 +> > > > builtin:open/3 +> > > > builtin:sub_atom/5 +> > > file_systems:file_members_of_directory/2 +> > appFnInterface:loadApplicationFunctions/1 +> > > builtin: = /2 +> > > lists:exclude/3 +> > > file_systems:file_members_of_directory/2 +> > > applicationFunction:generateApplicationFunctions/1 +> > > > applicationFunction:generateApplicationFunctions/2 +> > > > > applicationFunction:constructApplicationFunctions/3 +> > > > > > builtin: = /2 +> > > > > > builtin:atom_concat/3 +> > > > > > applicationFunction:createAppFunctionsFrame/5 +> > > > > > > builtin: = /2 +> > > > > > applicationFunction:generateEncodingAppFunctions/5 +> > > > > > > builtin:append/3 +> > > > > > > applicationFunction:generateAppFunctionsFromStmt/7 +> > > > > > > > builtin:append/3 +> > > > > > > > applicationFunction:generateAppFunctionFromVar/7 +> > > > > > > > > builtin:if/3 +> > > > > > > > > builtin:length/2 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > applicationFunction:resolveApplicationFunctions/6 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > applicationFunction:formatApplicationFunction/5 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > applicationFunction:getAndIncrementAppFunctionCount/1 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > applicationFunction:appFunctionCount/1 +> > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > builtin:retractall/1 +> > > > > > > > > > > > assert-applicationFunction:appFunctionCount/1 +> > > > > > > > > > > applicationFunction:isInLoop/2 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > lists:scanlist/4 +> > > > > > > > > > applicationFunction:getConcept/5 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > log:log/2 +> > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > applicationFunction:getPathVarConcepts/2 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > applicationFunction:retrieveConcept/2 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > applicationFunction:retrieveConceptByStmt/3 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > lists:nth1/3 +> > > > > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > applicationFunction:processDB2Position/6 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > lists:head/2 +> > > > > > > > > > > lists:nth1/3 +> > > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:throw/1 +> > > > > > > > > applicationFunction:resolveConeOfInfluence/5 +> > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > builtin: \= /2 +> > > > > > > > > > applicationFunction:filter_nodes/3 +> > > > > > > > > > > builtin: \== /2 +> > > > > > > > > > > applicationFunction:filter_nodes/3 ***** looping ***** +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > builtin:sub_atom/5 +> > > > > > > > > > builtin:findall/3 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > applicationFunction:removeNodeVarDups/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > log:log/2 +> > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > user:skip_me/1 +> > > > > > > > applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +> > > > > > > > applicationFunction:getVariablePosition/7 +> > > > > > > > > builtin: = /2 +> > > > > > > > > builtin:is/2 +> > > > > > > > > applicationFunction:isDBAppFnName/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > lists:is_list/1 +> > > > > > > > > builtin:member/2 +> > > > > > > > > lists:nth1/3 +> > > > > > > > builtin:member/2 +> > > > > > > > builtin:throw/1 +> > > > > > > applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +> > > > > > > applicationFunction:getEncodingVariables/2 +> > > > > > > > builtin:member/2 +> > > > > > > > builtin:throw/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > applicationFunction:generateInfoTransAppFunctions/5 +> > > > > > > builtin:append/3 +> > > > > > > applicationFunction:generateAppFunctionsFromStmt/7 +> > > > > > > > builtin:append/3 +> > > > > > > > applicationFunction:generateAppFunctionFromVar/7 +> > > > > > > > > builtin:if/3 +> > > > > > > > > builtin:length/2 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > applicationFunction:resolveApplicationFunctions/6 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > applicationFunction:formatApplicationFunction/5 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > applicationFunction:getAndIncrementAppFunctionCount/1 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > applicationFunction:appFunctionCount/1 +> > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > builtin:retractall/1 +> > > > > > > > > > > > assert-applicationFunction:appFunctionCount/1 +> > > > > > > > > > > applicationFunction:isInLoop/2 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > lists:scanlist/4 +> > > > > > > > > > applicationFunction:getConcept/5 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > log:log/2 +> > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > applicationFunction:getPathVarConcepts/2 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > applicationFunction:retrieveConcept/2 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > applicationFunction:retrieveConceptByStmt/3 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > lists:nth1/3 +> > > > > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > applicationFunction:processDB2Position/6 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > lists:head/2 +> > > > > > > > > > > lists:nth1/3 +> > > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:throw/1 +> > > > > > > > > applicationFunction:resolveConeOfInfluence/5 +> > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > builtin: \= /2 +> > > > > > > > > > applicationFunction:filter_nodes/3 +> > > > > > > > > > > builtin: \== /2 +> > > > > > > > > > > applicationFunction:filter_nodes/3 ***** looping ***** +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > builtin:sub_atom/5 +> > > > > > > > > > builtin:findall/3 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > applicationFunction:removeNodeVarDups/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > log:log/2 +> > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > user:skip_me/1 +> > > > > > > > applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +> > > > > > > > applicationFunction:getVariablePosition/7 +> > > > > > > > > builtin: = /2 +> > > > > > > > > builtin:is/2 +> > > > > > > > > applicationFunction:isDBAppFnName/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > lists:is_list/1 +> > > > > > > > > builtin:member/2 +> > > > > > > > > lists:nth1/3 +> > > > > > > > builtin:member/2 +> > > > > > > > builtin:throw/1 +> > > > > > > applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +> > > > > > > applicationFunction:getWriteVariables/2 +> > > > > > > > builtin:member/2 +> > > > > > > > builtin:throw/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getAppFnPath/1 +> > > > > > > sessionManager:getAppFnPath/2 +> > > > > > > > builtin:,/2 +> > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > appFnUtilities:getDFMStatementInfo/2 +> > > > > > > lists:append/2 +> > > > > > > appFnUtilities:getDfmInfo/7 +> > > > > > > > builtin:append/3 +> > > > > > > > appFnUtilities:getDB2DeleteStatementInfo/1 +> > > > > > > > > builtin:findall/3 +> > > > > > > > appFnUtilities:getDB2ReadStatementInfo/1 +> > > > > > > > > builtin:findall/3 +> > > > > > > > appFnUtilities:getDB2WriteStatementInfo/1 +> > > > > > > > > builtin:findall/3 +> > > > > > > > appFnUtilities:getDeleteStatementInfo/1 +> > > > > > > > > builtin:findall/3 +> > > > > > > > appFnUtilities:getReadStatementInfo/1 +> > > > > > > > > builtin:findall/3 +> > > > > > > > appFnUtilities:getScreenStatementInfo/2 +> > > > > > > > > builtin:findall/3 +> > > > > > > > appFnUtilities:getWriteStatementInfo/1 +> > > > > > > > > builtin:findall/3 +> > > > > > builtin:ground/1 +> > > > > > builtin:length/2 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > applicationFunction:resetAppFunctionCount/0 +> > > > > > > builtin:retractall/1 +> > > > > > applicationFunction:writeAppFunctionsToFile/2 +> > > > > > > builtin:close/1 +> > > > > > > builtin:memberchk/2 +> > > > > > > builtin:open/3 +> > > > > > > builtin:write/2 +> > > > > > > applicationFunction:writeAppFunctionsHelper/2 +> > > > > > > > builtin:nl/1 +> > > > > > > > builtin:write/2 +> > > > > > > > applicationFunction:writeAppFunctionsHelper/2 ***** looping ***** +> > > > > > > > builtin:writeq/2 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > applicationFunction:setUpAppFnProject/1 +> > > > > > applicationModel:generateApplicationModelForCurrentProject/0 +> > > > > > > applicationModel:assertFactsIntoApplicationModel/3 +> > > > > > > > applicationModel:artifactFilter/1 +> > > > > > > > > applicationModel:artifactExtension/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > applicationModel:assertFactsIntoApplicationModelFromArtifact/3 +> > > > > > > > > applicationModel:artifactExtension/1 +> > > > > > > > > applicationModel:assertModuleIntoApplicationModel/4 +> > > > > > > > > > applicationModel:assertTermAndReadNext/5 +> > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > applicationModel:assertTermAndReadNext/5 ***** looping ***** +> > > > > > > > > > > applicationModel:localizeNodeName/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > applicationModel:localizeNodeName/3 ***** looping ***** +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > solsticeUtility:subtermMember/2 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > builtin:nonvar/1 +> > > > > > > > > > > > > solsticeUtility:subtermMember/2 ***** looping ***** +> > > > > > > > > > > > solsticeUtility:subtermSelect/4 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:nonvar/1 +> > > > > > > > > > > > > lists:same_length/2 +> > > > > > > > > > > > > lists:select/4 +> > > > > > > > > > > > > solsticeUtility:subtermSelect/4 ***** looping ***** +> > > > > > > > > > > builtin:read/2 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > builtin:close/1 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > builtin:open/3 +> > > > > > > > > > builtin:read/2 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > file_systems:file_members_of_directory/3 +> > > > > > > builtin:atom_concat/3 +> > > > > > > applicationModel:cleanApplicationModelForCurrentProject/0 +> > > > > > > > applicationModel:cleanApplicationModelForProject/1 +> > > > > > > > > builtin:abolish/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > applicationModel:ensureApplicationModelDirectoryExists/0 +> > > > > > > > sessionManager:getApplicationModelPath/1 +> > > > > > > > > sessionManager:getApplicationModelPath/2 +> > > > > > > > > > builtin:,/2 +> > > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > builtin:if/3 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > applicationModel:writeApplicationModelToFile/0 +> > > > > > > > builtin:append/3 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > builtin:close/1 +> > > > > > > > builtin:findall/3 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > applicationModel:nlWrite/2 +> > > > > > > > > builtin:nl/1 +> > > > > > > > > builtin:write/2 +> > > > > > > > > builtin:writeq/2 +> > > > > > > > builtin:open/3 +> > > > > > > > builtin:sort/2 +> > > > > > > > sessionManager:getApplicationModelPath/1 +> > > > > > > > > sessionManager:getApplicationModelPath/2 +> > > > > > > > > > builtin:,/2 +> > > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCFMPath/1 +> > > > > > > > sessionManager:getCFMPath/2 +> > > > > > > > > builtin:,/2 +> > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getDFMPath/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getDFMPath/2 +> > > > > > > > > builtin:,/2 +> > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > dfmTraversal:build_dfm_traversal_graph/2 +> > > > > > > builtin:atom_concat/3 +> > > > > > > sessionManager:getArcPath/1 +> > > > > > > > sessionManager:getArcPath/2 +> > > > > > > > > builtin:,/2 +> > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > builtin:if/3 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getApplicationModelPath/1 +> > > > > > > sessionManager:getApplicationModelPath/2 +> > > > > > > > builtin:,/2 +> > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getArcPath/1 +> > > > > > > sessionManager:getArcPath/2 +> > > > > > > > builtin:,/2 +> > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getCurrentProject/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > sessionManager:hasBeenBuilt/2 +> > > > > > > builtin: \= /2 +> > > > > > > file_systems:file_members_of_directory/2 +> > > > > > > lists:include/3 +> > > > applicationFunction:smtSolverDefault/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > appFnInterface:loadAllApplicationFunctions/1 +> > > > appFnInterface:cleanUp/0 +> > > > > appFnInterface:getAppFnDomain/1 +> > > > > builtin:retractall/1 +> > > > lists:exclude/3 +> > > > file_systems:file_members_of_directory/2 +> > > > appFnInterface:retrieveRepresentation/1 +> > > > > builtin: = /2 +> > > > > builtin:close/1 +> > > > > appFnInterface:getAppFnDomain/1 +> > > > > solsticeUtility:isHiddenFile/1 +> > > > > > builtin: = /2 +> > > > > > builtin:sub_atom/5 +> > > > > appFnInterface:loadRepresentation/2 +> > > > > > builtin:(\+)/1 +> > > > > > builtin:assert/1 +> > > > > > appFnInterface:loadRepresentation/2 ***** looping ***** +> > > > > > builtin:read/2 +> > > > > builtin:open/3 +> > applicationModel:loadApplicationModelForCurrentProject/0 +> > > builtin:current_predicate/2 +> > > file_systems:file_members_of_directory/2 +> > > lists:include/3 +> > > applicationModel:retrieveRepresentation/2 +> > > > builtin: = /2 +> > > > builtin:close/1 +> > > > applicationModel:loadRepresentation/2 +> > > > > builtin:(\+)/1 +> > > > > builtin:assert/1 +> > > > > applicationModel:loadRepresentation/2 ***** looping ***** +> > > > > builtin:read/2 +> > > > builtin:open/3 +> > > > builtin:sub_atom/5 +> > > builtin:throw/1 +> > > sessionManager:getApplicationModelPath/1 +> > > > sessionManager:getApplicationModelPath/2 +> > > > > builtin:,/2 +> > > > > sessionManager:getSessionNamespace/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > sessionManager:getCurrentProject/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > sessionManager:getCurrentProject/1 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > sessionManager:loadArcs/1 +> > > lists:append/2 +> > > builtin:ensure_loaded/1 +> > > lists:exclude/3 +> > > file_systems:file_members_of_directory/2 +> > > sessionManager:getTestingFlag/1 +> > > sessionManager:get_file_path/2 +> > > > builtin:(\+)/1 +> > > > builtin:atom_concat/3 +> > transactionInterface:loadTransactionsForCurrentProject/0 +> > > transactionInterface:cleanUp/0 +> > > > transactionInterface:getTransactionDomain/1 +> > > > builtin:retractall/1 +> > > file_systems:file_exists/1 +> > > transactionInterface:getTransactionDomain/1 +> > > sessionManager:getTransactionPath/1 +> > > > sessionManager:getCurrentProject/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > sessionManager:getTransactionPath/2 +> > > > > builtin:,/2 +> > > > > sessionManager:getSessionNamespace/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > transactionInterface:loadRepresentation/2 +> > > > builtin:(\+)/1 +> > > > builtin:assert/1 +> > > > transactionInterface:loadRepresentation/2 ***** looping ***** +> > > > builtin:read/2 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > > builtin:open/3 +> sessionManager:cleanUpRepresentations/0 +> > appFnInterface:cleanUp/0 +> > > appFnInterface:getAppFnDomain/1 +> > > builtin:retractall/1 +> > ontology:cleanUpOntologyFacts/0 +> > > ontology:getDomain/1 +> > > builtin:retractall/1 +> > transactionInterface:cleanUp/0 +> > > transactionInterface:getTransactionDomain/1 +> > > builtin:retractall/1 +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 + +----- Going Down sessionManager:reloadRepresentation/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +sessionManager.pro 341:353 + +sessionManager:reloadRepresentation/2 uses: +> appFnInterface:cleanUp/0 +> > appFnInterface:getAppFnDomain/1 +> > builtin:retractall/1 +> ontology:cleanUpOntologyFacts/0 +> > ontology:getDomain/1 +> > builtin:retractall/1 +> sessionManager:getAppFnPath/1 +> > sessionManager:getAppFnPath/2 +> > > builtin:,/2 +> > > sessionManager:getSessionNamespace/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > sessionManager:getCurrentProject/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> sessionManager:getCurrentProject/1 +> > log:log/2 +> > > log:log/3 +> > > > builtin: =< /2 +> > > > log:getLogLevel/1 +> > > > > log:get_flag/2 +> > > > > > log:flag/2 +> > > > log:logType_logLevel/2 +> > > > > builtin:number/1 +> > > > builtin:nl/0 +> > > > log:timestamp/1 +> > > > > builtin:atom_concat/3 +> > > > > undefined:datime/1 +> > > > > log:number_formattedAtom/2 +> > > > > > builtin:atom_chars/2 +> > > > > > log:formatChars/2 +> > > > > > builtin:number_chars/2 +> > > > builtin:write/1 +> sessionManager:getOntologyPath/1 +> > sessionManager:getCurrentProject/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > sessionManager:getOntologyPath/2 +> > > builtin:,/2 +> > > sessionManager:getSessionNamespace/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> sessionManager:hasBeenBuilt/2 +> > builtin: \= /2 +> > file_systems:file_members_of_directory/2 +> > lists:include/3 +> ontology:instantiateFactsFromPath/1 +> > ontology:cleanUpOntologyFacts/0 +> > > ontology:getDomain/1 +> > > builtin:retractall/1 +> > ontology:convertToRepresentation/1 +> > > builtin: = /2 +> > > builtin:close/1 +> > > ontology:createRepresentation/2 +> > > > builtin:(\+)/1 +> > > > builtin:assert/1 +> > > > ontology:createRepresentation/2 ***** looping ***** +> > > > builtin:read/2 +> > > ontology:getDomain/1 +> > > builtin:open/3 +> > > builtin:sub_atom/5 +> > file_systems:file_members_of_directory/2 +> appFnInterface:loadApplicationFunctions/1 +> > builtin: = /2 +> > lists:exclude/3 +> > file_systems:file_members_of_directory/2 +> > applicationFunction:generateApplicationFunctions/1 +> > > applicationFunction:generateApplicationFunctions/2 +> > > > applicationFunction:constructApplicationFunctions/3 +> > > > > builtin: = /2 +> > > > > builtin:atom_concat/3 +> > > > > applicationFunction:createAppFunctionsFrame/5 +> > > > > > builtin: = /2 +> > > > > applicationFunction:generateEncodingAppFunctions/5 +> > > > > > builtin:append/3 +> > > > > > applicationFunction:generateAppFunctionsFromStmt/7 +> > > > > > > builtin:append/3 +> > > > > > > applicationFunction:generateAppFunctionFromVar/7 +> > > > > > > > builtin:if/3 +> > > > > > > > builtin:length/2 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > applicationFunction:resolveApplicationFunctions/6 +> > > > > > > > > builtin: = /2 +> > > > > > > > > applicationFunction:formatApplicationFunction/5 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > applicationFunction:getAndIncrementAppFunctionCount/1 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > applicationFunction:appFunctionCount/1 +> > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > builtin:retractall/1 +> > > > > > > > > > > assert-applicationFunction:appFunctionCount/1 +> > > > > > > > > > applicationFunction:isInLoop/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > lists:scanlist/4 +> > > > > > > > > applicationFunction:getConcept/5 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > applicationFunction:getPathVarConcepts/2 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > applicationFunction:retrieveConcept/2 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > applicationFunction:retrieveConceptByStmt/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > lists:nth1/3 +> > > > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > > builtin:throw/1 +> > > > > > > > > builtin:member/2 +> > > > > > > > > applicationFunction:processDB2Position/6 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > log:log/2 +> > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > lists:head/2 +> > > > > > > > > > lists:nth1/3 +> > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:throw/1 +> > > > > > > > > builtin:throw/1 +> > > > > > > > applicationFunction:resolveConeOfInfluence/5 +> > > > > > > > > builtin:(\+)/1 +> > > > > > > > > builtin: \= /2 +> > > > > > > > > applicationFunction:filter_nodes/3 +> > > > > > > > > > builtin: \== /2 +> > > > > > > > > > applicationFunction:filter_nodes/3 ***** looping ***** +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > builtin:sub_atom/5 +> > > > > > > > > builtin:findall/3 +> > > > > > > > > builtin:member/2 +> > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > applicationFunction:removeNodeVarDups/2 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > lists:remove_dups/2 +> > > > > > > > user:skip_me/1 +> > > > > > > applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +> > > > > > > applicationFunction:getVariablePosition/7 +> > > > > > > > builtin: = /2 +> > > > > > > > builtin:is/2 +> > > > > > > > applicationFunction:isDBAppFnName/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > lists:is_list/1 +> > > > > > > > builtin:member/2 +> > > > > > > > lists:nth1/3 +> > > > > > > builtin:member/2 +> > > > > > > builtin:throw/1 +> > > > > > applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +> > > > > > applicationFunction:getEncodingVariables/2 +> > > > > > > builtin:member/2 +> > > > > > > builtin:throw/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > applicationFunction:generateInfoTransAppFunctions/5 +> > > > > > builtin:append/3 +> > > > > > applicationFunction:generateAppFunctionsFromStmt/7 +> > > > > > > builtin:append/3 +> > > > > > > applicationFunction:generateAppFunctionFromVar/7 +> > > > > > > > builtin:if/3 +> > > > > > > > builtin:length/2 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > > applicationFunction:resolveApplicationFunctions/6 +> > > > > > > > > builtin: = /2 +> > > > > > > > > applicationFunction:formatApplicationFunction/5 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > applicationFunction:getAndIncrementAppFunctionCount/1 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > applicationFunction:appFunctionCount/1 +> > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > builtin:retractall/1 +> > > > > > > > > > > assert-applicationFunction:appFunctionCount/1 +> > > > > > > > > > applicationFunction:isInLoop/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > lists:scanlist/4 +> > > > > > > > > applicationFunction:getConcept/5 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > applicationFunction:getPathVarConcepts/2 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > applicationFunction:retrieveConcept/2 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > applicationFunction:retrieveConceptByStmt/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > ontology:getConceptFromColumnName/3 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > ontology:getColumnNameNodeString/2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > ontology:getConceptFromFile/3 +> > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getFileNodeString/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > ontology:getConceptFromScreen/3 +> > > > > > > > > > > > > ontology:convertTclScreenToOntologyName/2 +> > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:appendCharListWithCharacter/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:assert/1 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > ontology:isUpperOrDash/1 +> > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:splitCharacterCodesOnPredicate/4 ***** looping ***** +> > > > > > > > > > > > > > > solsticeUtility:call/2 +> > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > ontology:wordToCapitalizedWord/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:append/3 +> > > > > > > > > > > > > > > solsticeUtility:isDash/1 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > solsticeUtility:toLower/2 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > > > > solsticeUtility:isUpper/1 +> > > > > > > > > > > > > > > > > builtin: < /2 +> > > > > > > > > > > > > > > > > builtin: > /2 +> > > > > > > > > > > > > > > solsticeUtility:toUpper/2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > builtin:is/2 +> > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getScreenNodeString/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > ontology:handleNumberConversion/1 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > ontology:getKeyConceptFromFile/3 +> > > > > > > > > > > > > ontology:getField/2 +> > > > > > > > > > > > > > ontology:bridge/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalBridge/3 +> > > > > > > > > > > > > > ontology:hasA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > ontology:internalHasA/3 +> > > > > > > > > > > > > > > > builtin:;/2 +> > > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > > ontology:isA/2 +> > > > > > > > > > > > > > > ontology:getDomain/1 +> > > > > > > > > > > > > > > undefined:internalIsA/3 +> > > > > > > > > > > > > ontology:getFileKeyNodeString/3 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > ontology:number_to_atom/2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > lists:nth1/3 +> > > > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > > builtin:throw/1 +> > > > > > > > > builtin:member/2 +> > > > > > > > > applicationFunction:processDB2Position/6 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > appFnUtilities:getCursorSelectStmt/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > log:log/2 +> > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > lists:head/2 +> > > > > > > > > > lists:nth1/3 +> > > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > solsticeUtility:splitAtom/3 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > solsticeUtility:characterCodesToAtoms/2 ***** looping ***** +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 +> > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > solsticeUtility:splitCharacterCodes/3 ***** looping ***** +> > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > solsticeFileUtility:resolveFileName/2 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > solsticeFileUtility:getFileNameAssignment/3 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > builtin:throw/1 +> > > > > > > > > builtin:throw/1 +> > > > > > > > applicationFunction:resolveConeOfInfluence/5 +> > > > > > > > > builtin:(\+)/1 +> > > > > > > > > builtin: \= /2 +> > > > > > > > > applicationFunction:filter_nodes/3 +> > > > > > > > > > builtin: \== /2 +> > > > > > > > > > applicationFunction:filter_nodes/3 ***** looping ***** +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > builtin:sub_atom/5 +> > > > > > > > > builtin:findall/3 +> > > > > > > > > builtin:member/2 +> > > > > > > > > query_interface:queryVerify/4 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > query_interface:query/4 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 ***** looping ***** +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > query_interface:disjunction/5 +> > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > builtin:(\+)/1 +> > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > query_interface:conjunction/6 +> > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > query_interface:constraint/5 +> > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > query_interface:conjunction/6 ***** looping ***** +> > > > > > > > > > > > > > query_interface:constraint/2 +> > > > > > > > > > > > > > query_interface:constraintType/3 +> > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > query_interface:findallConstraint/6 +> > > > > > > > > > > > > > > lists:append/2 +> > > > > > > > > > > > > > > query_interface:constructMapTerm/6 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > query_interface:findallConstraint/6 ***** looping ***** +> > > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > query_interface:predicate/2 +> > > > > > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > builtin:findall/3 +> > > > > > > > > > > > > > > builtin:functor/3 +> > > > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > > query_interface:overlap/3 +> > > > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > > > query_interface:overlap/3 ***** looping ***** +> > > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > > query_interface:disjunction/5 ***** looping ***** +> > > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > > > > builtin:throw/1 +> > > > > > > > > > > lists:is_list/1 +> > > > > > > > > > > errorHandler:logError/1 +> > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > errorHandler:logErrorDetails/1 +> > > > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > log:log/2 +> > > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > log:log/3 +> > > > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > > > > errorHandler:logErrorDetails/1 ***** looping ***** +> > > > > > > > > > > builtin:throw/1 +> > > > > > > > > applicationFunction:removeNodeVarDups/2 +> > > > > > > > > > builtin: = /2 +> > > > > > > > > > log:log/2 +> > > > > > > > > > > log:log/3 +> > > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > > builtin:write/1 +> > > > > > > > > > builtin:member/2 +> > > > > > > > > > lists:remove_dups/2 +> > > > > > > > > lists:remove_dups/2 +> > > > > > > > user:skip_me/1 +> > > > > > > applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +> > > > > > > applicationFunction:getVariablePosition/7 +> > > > > > > > builtin: = /2 +> > > > > > > > builtin:is/2 +> > > > > > > > applicationFunction:isDBAppFnName/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > lists:is_list/1 +> > > > > > > > builtin:member/2 +> > > > > > > > lists:nth1/3 +> > > > > > > builtin:member/2 +> > > > > > > builtin:throw/1 +> > > > > > applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +> > > > > > applicationFunction:getWriteVariables/2 +> > > > > > > builtin:member/2 +> > > > > > > builtin:throw/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > sessionManager:getAppFnPath/1 +> > > > > > sessionManager:getAppFnPath/2 +> > > > > > > builtin:,/2 +> > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getCurrentProject/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > appFnUtilities:getDFMStatementInfo/2 +> > > > > > lists:append/2 +> > > > > > appFnUtilities:getDfmInfo/7 +> > > > > > > builtin:append/3 +> > > > > > > appFnUtilities:getDB2DeleteStatementInfo/1 +> > > > > > > > builtin:findall/3 +> > > > > > > appFnUtilities:getDB2ReadStatementInfo/1 +> > > > > > > > builtin:findall/3 +> > > > > > > appFnUtilities:getDB2WriteStatementInfo/1 +> > > > > > > > builtin:findall/3 +> > > > > > > appFnUtilities:getDeleteStatementInfo/1 +> > > > > > > > builtin:findall/3 +> > > > > > > appFnUtilities:getReadStatementInfo/1 +> > > > > > > > builtin:findall/3 +> > > > > > > appFnUtilities:getScreenStatementInfo/2 +> > > > > > > > builtin:findall/3 +> > > > > > > appFnUtilities:getWriteStatementInfo/1 +> > > > > > > > builtin:findall/3 +> > > > > builtin:ground/1 +> > > > > builtin:length/2 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > applicationFunction:resetAppFunctionCount/0 +> > > > > > builtin:retractall/1 +> > > > > applicationFunction:writeAppFunctionsToFile/2 +> > > > > > builtin:close/1 +> > > > > > builtin:memberchk/2 +> > > > > > builtin:open/3 +> > > > > > builtin:write/2 +> > > > > > applicationFunction:writeAppFunctionsHelper/2 +> > > > > > > builtin:nl/1 +> > > > > > > builtin:write/2 +> > > > > > > applicationFunction:writeAppFunctionsHelper/2 ***** looping ***** +> > > > > > > builtin:writeq/2 +> > > > log:log/2 +> > > > > log:log/3 +> > > > > > builtin: =< /2 +> > > > > > log:getLogLevel/1 +> > > > > > > log:get_flag/2 +> > > > > > > > log:flag/2 +> > > > > > log:logType_logLevel/2 +> > > > > > > builtin:number/1 +> > > > > > builtin:nl/0 +> > > > > > log:timestamp/1 +> > > > > > > builtin:atom_concat/3 +> > > > > > > undefined:datime/1 +> > > > > > > log:number_formattedAtom/2 +> > > > > > > > builtin:atom_chars/2 +> > > > > > > > log:formatChars/2 +> > > > > > > > builtin:number_chars/2 +> > > > > > builtin:write/1 +> > > > applicationFunction:setUpAppFnProject/1 +> > > > > applicationModel:generateApplicationModelForCurrentProject/0 +> > > > > > applicationModel:assertFactsIntoApplicationModel/3 +> > > > > > > applicationModel:artifactFilter/1 +> > > > > > > > applicationModel:artifactExtension/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > applicationModel:assertFactsIntoApplicationModelFromArtifact/3 +> > > > > > > > applicationModel:artifactExtension/1 +> > > > > > > > applicationModel:assertModuleIntoApplicationModel/4 +> > > > > > > > > applicationModel:assertTermAndReadNext/5 +> > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > builtin:assert/1 +> > > > > > > > > > applicationModel:assertTermAndReadNext/5 ***** looping ***** +> > > > > > > > > > applicationModel:localizeNodeName/3 +> > > > > > > > > > > builtin: = /2 +> > > > > > > > > > > builtin:atom/1 +> > > > > > > > > > > builtin:atom_codes/2 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > applicationModel:localizeNodeName/3 ***** looping ***** +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:number_codes/2 +> > > > > > > > > > > solsticeUtility:subtermMember/2 +> > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > builtin:member/2 +> > > > > > > > > > > > builtin:nonvar/1 +> > > > > > > > > > > > solsticeUtility:subtermMember/2 ***** looping ***** +> > > > > > > > > > > solsticeUtility:subtermSelect/4 +> > > > > > > > > > > > builtin: =.. /2 +> > > > > > > > > > > > builtin:nonvar/1 +> > > > > > > > > > > > lists:same_length/2 +> > > > > > > > > > > > lists:select/4 +> > > > > > > > > > > > solsticeUtility:subtermSelect/4 ***** looping ***** +> > > > > > > > > > builtin:read/2 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > builtin:close/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > > builtin:open/3 +> > > > > > > > > builtin:read/2 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > file_systems:file_members_of_directory/3 +> > > > > > builtin:atom_concat/3 +> > > > > > applicationModel:cleanApplicationModelForCurrentProject/0 +> > > > > > > applicationModel:cleanApplicationModelForProject/1 +> > > > > > > > builtin:abolish/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > applicationModel:ensureApplicationModelDirectoryExists/0 +> > > > > > > sessionManager:getApplicationModelPath/1 +> > > > > > > > sessionManager:getApplicationModelPath/2 +> > > > > > > > > builtin:,/2 +> > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > builtin:if/3 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > > applicationModel:writeApplicationModelToFile/0 +> > > > > > > builtin:append/3 +> > > > > > > builtin:atom_concat/3 +> > > > > > > builtin:close/1 +> > > > > > > builtin:findall/3 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > > applicationModel:nlWrite/2 +> > > > > > > > builtin:nl/1 +> > > > > > > > builtin:write/2 +> > > > > > > > builtin:writeq/2 +> > > > > > > builtin:open/3 +> > > > > > > builtin:sort/2 +> > > > > > > sessionManager:getApplicationModelPath/1 +> > > > > > > > sessionManager:getApplicationModelPath/2 +> > > > > > > > > builtin:,/2 +> > > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > > log:log/2 +> > > > > > > > > > log:log/3 +> > > > > > > > > > > builtin: =< /2 +> > > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > > log:flag/2 +> > > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > > builtin:number/1 +> > > > > > > > > > > builtin:nl/0 +> > > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getCFMPath/1 +> > > > > > > sessionManager:getCFMPath/2 +> > > > > > > > builtin:,/2 +> > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getCurrentProject/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getDFMPath/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getDFMPath/2 +> > > > > > > > builtin:,/2 +> > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > dfmTraversal:build_dfm_traversal_graph/2 +> > > > > > builtin:atom_concat/3 +> > > > > > sessionManager:getArcPath/1 +> > > > > > > sessionManager:getArcPath/2 +> > > > > > > > builtin:,/2 +> > > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > > sessionManager:getCurrentProject/1 +> > > > > > > > log:log/2 +> > > > > > > > > log:log/3 +> > > > > > > > > > builtin: =< /2 +> > > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > > log:flag/2 +> > > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > > builtin:number/1 +> > > > > > > > > > builtin:nl/0 +> > > > > > > > > > log:timestamp/1 +> > > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > > undefined:datime/1 +> > > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > > builtin:write/1 +> > > > > > builtin:if/3 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > sessionManager:getApplicationModelPath/1 +> > > > > > sessionManager:getApplicationModelPath/2 +> > > > > > > builtin:,/2 +> > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getCurrentProject/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > sessionManager:getArcPath/1 +> > > > > > sessionManager:getArcPath/2 +> > > > > > > builtin:,/2 +> > > > > > > sessionManager:getSessionNamespace/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > > sessionManager:getCurrentProject/1 +> > > > > > > log:log/2 +> > > > > > > > log:log/3 +> > > > > > > > > builtin: =< /2 +> > > > > > > > > log:getLogLevel/1 +> > > > > > > > > > log:get_flag/2 +> > > > > > > > > > > log:flag/2 +> > > > > > > > > log:logType_logLevel/2 +> > > > > > > > > > builtin:number/1 +> > > > > > > > > builtin:nl/0 +> > > > > > > > > log:timestamp/1 +> > > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > > undefined:datime/1 +> > > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > > log:formatChars/2 +> > > > > > > > > > > builtin:number_chars/2 +> > > > > > > > > builtin:write/1 +> > > > > sessionManager:getCurrentProject/1 +> > > > > > log:log/2 +> > > > > > > log:log/3 +> > > > > > > > builtin: =< /2 +> > > > > > > > log:getLogLevel/1 +> > > > > > > > > log:get_flag/2 +> > > > > > > > > > log:flag/2 +> > > > > > > > log:logType_logLevel/2 +> > > > > > > > > builtin:number/1 +> > > > > > > > builtin:nl/0 +> > > > > > > > log:timestamp/1 +> > > > > > > > > builtin:atom_concat/3 +> > > > > > > > > undefined:datime/1 +> > > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > > log:formatChars/2 +> > > > > > > > > > builtin:number_chars/2 +> > > > > > > > builtin:write/1 +> > > > > log:log/2 +> > > > > > log:log/3 +> > > > > > > builtin: =< /2 +> > > > > > > log:getLogLevel/1 +> > > > > > > > log:get_flag/2 +> > > > > > > > > log:flag/2 +> > > > > > > log:logType_logLevel/2 +> > > > > > > > builtin:number/1 +> > > > > > > builtin:nl/0 +> > > > > > > log:timestamp/1 +> > > > > > > > builtin:atom_concat/3 +> > > > > > > > undefined:datime/1 +> > > > > > > > log:number_formattedAtom/2 +> > > > > > > > > builtin:atom_chars/2 +> > > > > > > > > log:formatChars/2 +> > > > > > > > > builtin:number_chars/2 +> > > > > > > builtin:write/1 +> > > > > sessionManager:hasBeenBuilt/2 +> > > > > > builtin: \= /2 +> > > > > > file_systems:file_members_of_directory/2 +> > > > > > lists:include/3 +> > > applicationFunction:smtSolverDefault/1 +> > sessionManager:getCurrentProject/1 +> > > log:log/2 +> > > > log:log/3 +> > > > > builtin: =< /2 +> > > > > log:getLogLevel/1 +> > > > > > log:get_flag/2 +> > > > > > > log:flag/2 +> > > > > log:logType_logLevel/2 +> > > > > > builtin:number/1 +> > > > > builtin:nl/0 +> > > > > log:timestamp/1 +> > > > > > builtin:atom_concat/3 +> > > > > > undefined:datime/1 +> > > > > > log:number_formattedAtom/2 +> > > > > > > builtin:atom_chars/2 +> > > > > > > log:formatChars/2 +> > > > > > > builtin:number_chars/2 +> > > > > builtin:write/1 +> > appFnInterface:loadAllApplicationFunctions/1 +> > > appFnInterface:cleanUp/0 +> > > > appFnInterface:getAppFnDomain/1 +> > > > builtin:retractall/1 +> > > lists:exclude/3 +> > > file_systems:file_members_of_directory/2 +> > > appFnInterface:retrieveRepresentation/1 +> > > > builtin: = /2 +> > > > builtin:close/1 +> > > > appFnInterface:getAppFnDomain/1 +> > > > solsticeUtility:isHiddenFile/1 +> > > > > builtin: = /2 +> > > > > builtin:sub_atom/5 +> > > > appFnInterface:loadRepresentation/2 +> > > > > builtin:(\+)/1 +> > > > > builtin:assert/1 +> > > > > appFnInterface:loadRepresentation/2 ***** looping ***** +> > > > > builtin:read/2 +> > > > builtin:open/3 +> log:log/2 +> > log:log/3 +> > > builtin: =< /2 +> > > log:getLogLevel/1 +> > > > log:get_flag/2 +> > > > > log:flag/2 +> > > log:logType_logLevel/2 +> > > > builtin:number/1 +> > > builtin:nl/0 +> > > log:timestamp/1 +> > > > builtin:atom_concat/3 +> > > > undefined:datime/1 +> > > > log:number_formattedAtom/2 +> > > > > builtin:atom_chars/2 +> > > > > log:formatChars/2 +> > > > > builtin:number_chars/2 +> > > builtin:write/1 + +----- Going Down sessionManager:setTestingFlag/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Session/sessionManager.pro +sessionManager.pro 421:427 + +sessionManager:setTestingFlag/1 uses: +> builtin:assert/1 +> sessionManager:getSessionNamespace/1 +> builtin:ground/1 +> builtin:retractall/1 + +----- Going Down logicTranslationUtilities:thisLoopIsNoGood/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +logicTranslationUtilities.pro 0:0 + +logicTranslationUtilities:thisLoopIsNoGood/1 uses: + +----- Going Down dfmInterface:blocking/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 0:0 + +dfmInterface:blocking/1 uses: + +----- Going Down dfmInterface:dfm/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro 0:0 + +dfmInterface:dfm/2 uses: + +----- Going Down diagnostics:fugitID/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 0:0 + +diagnostics:fugitID/1 uses: + +----- Going Down diagnostics:tempus/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 0:0 + +diagnostics:tempus/1 uses: + +----- Going Down diagnostics:tempusFail/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 0:0 + +diagnostics:tempusFail/1 uses: + +----- Going Down diagnostics:dinged/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro 0:0 + +diagnostics:dinged/2 uses: + +----- Going Down dfmTraversal:externalCall/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro 0:0 + +dfmTraversal:externalCall/2 uses: + +----- Going Down dfmCreate:recursionVar/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +dfmCreate.pro 0:0 + +dfmCreate:recursionVar/2 uses: + +----- Going Down tokenize:language/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +tokenize.pro 0:0 + +tokenize:language/1 uses: + +----- Going Down fileInformation:fileOutputPath/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +fileInformation.pro 0:0 + +fileInformation:fileOutputPath/1 uses: + +----- Going Down user:nextRecord/2 ---------- +unknown +unknown 0:0 + +user:nextRecord/2 uses: + +----- Going Down solsticeUtility:atomNumber/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +solsticeUtility.pro 0:0 + +solsticeUtility:atomNumber/2 uses: + +----- Going Down operators:called/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +operators.pro 0:0 + +operators:called/2 uses: + +----- Coming Up applicationFunction:appFunctionCount/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/applicationFunction.pro +applicationFunction.pro + +applicationFunction:appFunctionCount/1 modified in and callers upstream: +< applicationFunction:getAndIncrementAppFunctionCount/1 +< < applicationFunction:formatApplicationFunction/5 +< < < applicationFunction:resolveApplicationFunctions/6 +< < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** + +applicationFunction:appFunctionCount/1 used by: +< applicationFunction:getAndIncrementAppFunctionCount/1 +< < applicationFunction:formatApplicationFunction/5 +< < < applicationFunction:resolveApplicationFunctions/6 +< < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** + +----- Coming Up logicTranslationUtilities:thisLoopIsNoGood/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/logicTranslation/logicTranslationUtilities.pro +logicTranslationUtilities.pro + +logicTranslationUtilities:thisLoopIsNoGood/1 modified in and callers upstream: +< logicTranslationUtilities:isBadLoop/3 + +logicTranslationUtilities:thisLoopIsNoGood/1 used by: + +----- Coming Up dfmInterface:blocking/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro + +dfmInterface:blocking/1 modified in and callers upstream: + +dfmInterface:blocking/1 used by: + +----- Coming Up dfmInterface:dfm/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmInterface.pro +dfmInterface.pro + +dfmInterface:dfm/2 modified in and callers upstream: + +dfmInterface:dfm/2 used by: + +----- Coming Up dfmTraversal:visited/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro + +dfmTraversal:visited/1 modified in and callers upstream: +< dfmTraversal:find_a_forward_pair/3 +< dfmTraversal:find_a_pair/3 + +dfmTraversal:visited/1 used by: +< dfmTraversal:find_a_forward_pair/3 +< dfmTraversal:find_a_pair/3 + +----- Coming Up diagnostics:indentation/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro + +diagnostics:indentation/1 modified in and callers upstream: +< diagnostics:decIndent/0 +< < diagnostics:display_pred/2 +< < < diagnostics:pred_arg/2 +< < < < diagnostics:pred_arg/2 ***** looping ***** +< < < < diagnostics:pred_args/2 +< < < < < diagnostics:display_pred/2 ***** looping ***** +< < < < < diagnostics:pred_args/2 ***** looping ***** +< < < diagnostics:(profile)/1 +< < < < diagnostics:(pf)/1 +< < diagnostics:(profile)/1 +< < < diagnostics:(pf)/1 +< diagnostics:incIndent/0 +< < diagnostics:display_pred/2 +< < < diagnostics:pred_arg/2 +< < < < diagnostics:pred_arg/2 ***** looping ***** +< < < < diagnostics:pred_args/2 +< < < < < diagnostics:display_pred/2 ***** looping ***** +< < < < < diagnostics:pred_args/2 ***** looping ***** +< < < diagnostics:(profile)/1 +< < < < diagnostics:(pf)/1 +< < diagnostics:(profile)/1 +< < < diagnostics:(pf)/1 +< diagnostics:indent/1 +< < diagnostics:display_pred/2 +< < < diagnostics:pred_arg/2 +< < < < diagnostics:pred_arg/2 ***** looping ***** +< < < < diagnostics:pred_args/2 +< < < < < diagnostics:display_pred/2 ***** looping ***** +< < < < < diagnostics:pred_args/2 ***** looping ***** +< < < diagnostics:(profile)/1 +< < < < diagnostics:(pf)/1 +< < diagnostics:indent/1 ***** looping ***** +< < diagnostics:pred_args/2 +< < < diagnostics:display_pred/2 +< < < < diagnostics:pred_arg/2 +< < < < < diagnostics:pred_arg/2 ***** looping ***** +< < < < < diagnostics:pred_args/2 ***** looping ***** +< < < < diagnostics:(profile)/1 +< < < < < diagnostics:(pf)/1 +< < < diagnostics:pred_args/2 ***** looping ***** +< < diagnostics:(profile)/1 +< < < diagnostics:(pf)/1 +< diagnostics:profile_init/1 +< < diagnostics:profile_init/0 + +diagnostics:indentation/1 used by: +< diagnostics:decIndent/0 +< < diagnostics:display_pred/2 +< < < diagnostics:pred_arg/2 +< < < < diagnostics:pred_arg/2 ***** looping ***** +< < < < diagnostics:pred_args/2 +< < < < < diagnostics:display_pred/2 ***** looping ***** +< < < < < diagnostics:pred_args/2 ***** looping ***** +< < < diagnostics:(profile)/1 +< < < < diagnostics:(pf)/1 +< < diagnostics:(profile)/1 +< < < diagnostics:(pf)/1 +< diagnostics:indent/1 +< < diagnostics:display_pred/2 +< < < diagnostics:pred_arg/2 +< < < < diagnostics:pred_arg/2 ***** looping ***** +< < < < diagnostics:pred_args/2 +< < < < < diagnostics:display_pred/2 ***** looping ***** +< < < < < diagnostics:pred_args/2 ***** looping ***** +< < < diagnostics:(profile)/1 +< < < < diagnostics:(pf)/1 +< < diagnostics:indent/1 ***** looping ***** +< < diagnostics:pred_args/2 +< < < diagnostics:display_pred/2 +< < < < diagnostics:pred_arg/2 +< < < < < diagnostics:pred_arg/2 ***** looping ***** +< < < < < diagnostics:pred_args/2 ***** looping ***** +< < < < diagnostics:(profile)/1 +< < < < < diagnostics:(pf)/1 +< < < diagnostics:pred_args/2 ***** looping ***** +< < diagnostics:(profile)/1 +< < < diagnostics:(pf)/1 + +----- Coming Up diagnostics:fugitID/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro + +diagnostics:fugitID/1 modified in and callers upstream: +< diagnostics:profile_init/1 +< < diagnostics:profile_init/0 + +diagnostics:fugitID/1 used by: + +----- Coming Up diagnostics:tempus/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro + +diagnostics:tempus/1 modified in and callers upstream: +< diagnostics:(fugit)/1 +< diagnostics:(profile)/1 +< < diagnostics:(pf)/1 + +diagnostics:tempus/1 used by: + +----- Coming Up diagnostics:tempusFail/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro + +diagnostics:tempusFail/1 modified in and callers upstream: +< diagnostics:(fugit)/1 + +diagnostics:tempusFail/1 used by: + +----- Coming Up diagnostics:dinged/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/diagnostics.pro +diagnostics.pro + +diagnostics:dinged/2 modified in and callers upstream: +< diagnostics:tick/1 +< < diagnostics:(ding)/1 + +diagnostics:dinged/2 used by: + +----- Coming Up user:currentStream/1 ---------- +unknown +unknown + +user:currentStream/1 modified in and callers upstream: +< diagnostics:close_log_file/0 +< diagnostics:open_log_file/0 +< < diagnostics:log/2 + +user:currentStream/1 used by: +< diagnostics:close_log_file/0 +< diagnostics:log/2 + +----- Coming Up dfmTraversal:externalCall/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro + +dfmTraversal:externalCall/2 modified in and callers upstream: + +dfmTraversal:externalCall/2 used by: + +----- Coming Up dfmTraversal:blocking/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/semanticEngine/dfmTraversal.pro +dfmTraversal.pro + +dfmTraversal:blocking/2 modified in and callers upstream: +< dfmTraversal:check_if_already_found/2 +< < dfmTraversal:check_if_already_found/2 ***** looping ***** +< < dfmTraversal:find_all_arcs/4 +< < < dfmTraversal:find_all_arcs/4 ***** looping ***** + +dfmTraversal:blocking/2 used by: +< dfmTraversal:check_if_already_found/2 +< < dfmTraversal:check_if_already_found/2 ***** looping ***** +< < dfmTraversal:find_all_arcs/4 +< < < dfmTraversal:find_all_arcs/4 ***** looping ***** + +----- Coming Up dfmCreate:recursionVar/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/dfmCreate.pro +dfmCreate.pro + +dfmCreate:recursionVar/2 modified in and callers upstream: + +dfmCreate:recursionVar/2 used by: + +----- Coming Up tokenize:language/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Parsing/tokenize.pro +tokenize.pro + +tokenize:language/1 modified in and callers upstream: +< tokenize:tokens/3 +< < miniCParse:getFileDefinitionsC/2 +< < < executeMiniProgram:parseMiniC/2 +< < miniCobolParse:getFileDefinitionsCobol/2 +< < < executeMiniProgram:parseMiniCobol/2 + +tokenize:language/1 used by: + +----- Coming Up preProcess:outEnv/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +preprocess.pro + +preProcess:outEnv/1 modified in and callers upstream: +< preProcess:saveState/2 +< < preProcess:initializeDebug/2 +< < preProcess:stepRecurse/1 +< < < preProcess:step/2 + +preProcess:outEnv/1 used by: +< preProcess:getState/2 +< < preProcess:step/2 +< < preProcess:stepRecurse/1 +< < < preProcess:step/2 + +----- Coming Up preProcess:stepStack/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Interpreting/preprocess.pro +preprocess.pro + +preProcess:stepStack/1 modified in and callers upstream: +< preProcess:saveState/2 +< < preProcess:initializeDebug/2 +< < preProcess:stepRecurse/1 +< < < preProcess:step/2 + +preProcess:stepStack/1 used by: +< preProcess:getState/2 +< < preProcess:step/2 +< < preProcess:stepRecurse/1 +< < < preProcess:step/2 + +----- Coming Up user:representation/2 ---------- +unknown +unknown + +user:representation/2 modified in and callers upstream: +< preProcess:initializeDebug/2 +< preProcess:loadModule/1 +< < semantics:functionStep/4 +< < < cfmStep:cfmStep/4 +< < < dfmStep:dfmStep/4 +< preProcess:runCfm/3 +< preProcess:runDfm/3 + +user:representation/2 used by: +< cfmStep:cfmNodeStep/4 +< < cfmStep:cfmStep/4 +< cfmStep:findNextNode/3 +< < cfmStep:cfmNodeStep/4 +< < < cfmStep:cfmStep/4 +< dfmStep:dfmNodeStep/4 +< < dfmStep:dfmStep/4 +< dfmStep:findAFunction/3 +< dfmStep:findDependencies/4 +< < dfmStep:dfmNodeStep/4 +< < < dfmStep:dfmStep/4 +< dfmStep:findFunctions/3 +< < cfmStep:cfmNodeStep/4 +< < < cfmStep:cfmStep/4 +< < dfmStep:dfmNodeStep/4 +< < < dfmStep:dfmStep/4 +< preProcess:loadModule/1 +< < semantics:functionStep/4 +< < < cfmStep:cfmStep/4 +< < < dfmStep:dfmStep/4 +< semantics:execute/5 +< < semantics:executeNode/5 +< < < cfmStep:cfmNodeStep/4 +< < < < cfmStep:cfmStep/4 +< < < dfmStep:dfmNodeStep/4 +< < < < dfmStep:dfmStep/4 +< semantics:executeNode/5 +< < cfmStep:cfmNodeStep/4 +< < < cfmStep:cfmStep/4 +< < dfmStep:dfmNodeStep/4 +< < < dfmStep:dfmStep/4 +< semantics:findInitialNodes/3 +< < preProcess:initializeDebug/2 +< < preProcess:runCfm/3 +< < preProcess:runDfm/3 +< < semantics:functionStep/4 +< < < cfmStep:cfmStep/4 +< < < dfmStep:dfmStep/4 +< semantics:functionStep/4 +< < cfmStep:cfmStep/4 +< < dfmStep:dfmStep/4 +< semantics:keyIsValid/4 +< semantics:notValid/5 + +----- Coming Up fileInformation:fileOutputPath/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +fileInformation.pro + +fileInformation:fileOutputPath/1 modified in and callers upstream: +< preProcess:runCfm/3 +< preProcess:runDfm/3 + +fileInformation:fileOutputPath/1 used by: + +----- Coming Up fileInformation:representationsPath/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +fileInformation.pro + +fileInformation:representationsPath/1 modified in and callers upstream: +< preProcess:initializeDebug/2 +< preProcess:runCfm/3 +< preProcess:runDfm/3 + +fileInformation:representationsPath/1 used by: +< preProcess:loadModule/1 +< < semantics:functionStep/4 +< < < cfmStep:cfmStep/4 +< < < dfmStep:dfmStep/4 + +----- Coming Up user:fileRecord/3 ---------- +unknown +unknown + +user:fileRecord/3 modified in and callers upstream: +< semantics:changeFile/3 +< < semantics:execute/5 +< < < semantics:executeNode/5 +< < < < cfmStep:cfmNodeStep/4 +< < < < < cfmStep:cfmStep/4 +< < < < dfmStep:dfmNodeStep/4 +< < < < < dfmStep:dfmStep/4 + +user:fileRecord/3 used by: +< semantics:deleteFile/2 +< < semantics:execute/5 +< < < semantics:executeNode/5 +< < < < cfmStep:cfmNodeStep/4 +< < < < < cfmStep:cfmStep/4 +< < < < dfmStep:dfmNodeStep/4 +< < < < < dfmStep:dfmStep/4 +< semantics:execute/5 +< < semantics:executeNode/5 +< < < cfmStep:cfmNodeStep/4 +< < < < cfmStep:cfmStep/4 +< < < dfmStep:dfmNodeStep/4 +< < < < dfmStep:dfmStep/4 +< semantics:fileExists/1 +< < semantics:execute/5 +< < < semantics:executeNode/5 +< < < < cfmStep:cfmNodeStep/4 +< < < < < cfmStep:cfmStep/4 +< < < < dfmStep:dfmNodeStep/4 +< < < < < dfmStep:dfmStep/4 +< semantics:getGTEfileRecord/3 +< < semantics:execute/5 +< < < semantics:executeNode/5 +< < < < cfmStep:cfmNodeStep/4 +< < < < < cfmStep:cfmStep/4 +< < < < dfmStep:dfmNodeStep/4 +< < < < < dfmStep:dfmStep/4 +< semantics:getNextRecord/3 +< < semantics:execute/5 +< < < semantics:executeNode/5 +< < < < cfmStep:cfmNodeStep/4 +< < < < < cfmStep:cfmStep/4 +< < < < dfmStep:dfmNodeStep/4 +< < < < < dfmStep:dfmStep/4 +< semantics:keyIsValid/4 +< semantics:notValid/5 +< tclScreen:validRecord/4 + +----- Coming Up user:currentIndex/1 ---------- +unknown +unknown + +user:currentIndex/1 modified in and callers upstream: +< semantics:execute/5 +< < semantics:executeNode/5 +< < < cfmStep:cfmNodeStep/4 +< < < < cfmStep:cfmStep/4 +< < < dfmStep:dfmNodeStep/4 +< < < < dfmStep:dfmStep/4 + +user:currentIndex/1 used by: +< semantics:execute/5 +< < semantics:executeNode/5 +< < < cfmStep:cfmNodeStep/4 +< < < < cfmStep:cfmStep/4 +< < < dfmStep:dfmNodeStep/4 +< < < < dfmStep:dfmStep/4 + +----- Coming Up user:cursorQuery/1 ---------- +unknown +unknown + +user:cursorQuery/1 modified in and callers upstream: +< semantics:execute/5 +< < semantics:executeNode/5 +< < < cfmStep:cfmNodeStep/4 +< < < < cfmStep:cfmStep/4 +< < < dfmStep:dfmNodeStep/4 +< < < < dfmStep:dfmStep/4 + +user:cursorQuery/1 used by: +< semantics:execute/5 +< < semantics:executeNode/5 +< < < cfmStep:cfmNodeStep/4 +< < < < cfmStep:cfmStep/4 +< < < dfmStep:dfmNodeStep/4 +< < < < dfmStep:dfmStep/4 + +----- Coming Up user:dbRow/2 ---------- +unknown +unknown + +user:dbRow/2 modified in and callers upstream: +< semantics:execute/5 +< < semantics:executeNode/5 +< < < cfmStep:cfmNodeStep/4 +< < < < cfmStep:cfmStep/4 +< < < dfmStep:dfmNodeStep/4 +< < < < dfmStep:dfmStep/4 + +user:dbRow/2 used by: +< semantics:execute/5 +< < semantics:executeNode/5 +< < < cfmStep:cfmNodeStep/4 +< < < < cfmStep:cfmStep/4 +< < < dfmStep:dfmNodeStep/4 +< < < < dfmStep:dfmStep/4 +< semantics:getColumnValues/3 +< semantics:runWhereQueries/2 +< < semantics:runSelect/4 +< < < semantics:execute/5 +< < < < semantics:executeNode/5 +< < < < < cfmStep:cfmNodeStep/4 +< < < < < < cfmStep:cfmStep/4 +< < < < < dfmStep:dfmNodeStep/4 +< < < < < < dfmStep:dfmStep/4 +< < semantics:runWhereQueries/2 ***** looping ***** + +----- Coming Up user:nextRecord/2 ---------- +unknown +unknown + +user:nextRecord/2 modified in and callers upstream: +< semantics:execute/5 +< < semantics:executeNode/5 +< < < cfmStep:cfmNodeStep/4 +< < < < cfmStep:cfmStep/4 +< < < dfmStep:dfmNodeStep/4 +< < < < dfmStep:dfmStep/4 + +user:nextRecord/2 used by: + +----- Coming Up tclScreen:tclInterpreter/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +screenTclGui.pro + +tclScreen:tclInterpreter/1 modified in and callers upstream: +< tclScreen:tclScreen/6 +< < semantics:execute/5 +< < < semantics:executeNode/5 +< < < < cfmStep:cfmNodeStep/4 +< < < < < cfmStep:cfmStep/4 +< < < < dfmStep:dfmNodeStep/4 +< < < < < dfmStep:dfmStep/4 + +tclScreen:tclInterpreter/1 used by: +< tclScreen:loadFileRecords/1 +< tclScreen:screenInit/0 +< tclScreen:setFileRecords/3 + +----- Coming Up tclScreen:screenFullPath/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +screenTclGui.pro + +tclScreen:screenFullPath/1 modified in and callers upstream: +< tclScreen:tclScreen/6 +< < semantics:execute/5 +< < < semantics:executeNode/5 +< < < < cfmStep:cfmNodeStep/4 +< < < < < cfmStep:cfmStep/4 +< < < < dfmStep:dfmNodeStep/4 +< < < < < dfmStep:dfmStep/4 + +tclScreen:screenFullPath/1 used by: +< tclScreen:setVars/1 + +----- Coming Up tclScreen:screenArguments/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +screenTclGui.pro + +tclScreen:screenArguments/1 modified in and callers upstream: +< tclScreen:tclScreen/6 +< < semantics:execute/5 +< < < semantics:executeNode/5 +< < < < cfmStep:cfmNodeStep/4 +< < < < < cfmStep:cfmStep/4 +< < < < dfmStep:dfmNodeStep/4 +< < < < < dfmStep:dfmStep/4 + +tclScreen:screenArguments/1 used by: +< tclScreen:loadFileRecords/1 +< tclScreen:screenInit/0 + +----- Coming Up tclScreen:fileRecords/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +screenTclGui.pro + +tclScreen:fileRecords/1 modified in and callers upstream: +< tclScreen:loadFileRecords/1 + +tclScreen:fileRecords/1 used by: +< tclScreen:setFileRecords/3 + +----- Coming Up tclScreen:env/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +screenTclGui.pro + +tclScreen:env/1 modified in and callers upstream: +< tclScreen:tclScreen/6 +< < semantics:execute/5 +< < < semantics:executeNode/5 +< < < < cfmStep:cfmNodeStep/4 +< < < < < cfmStep:cfmStep/4 +< < < < dfmStep:dfmNodeStep/4 +< < < < < dfmStep:dfmStep/4 + +tclScreen:env/1 used by: +< tclScreen:setVars/1 + +----- Coming Up tclScreen:variables/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +screenTclGui.pro + +tclScreen:variables/1 modified in and callers upstream: +< tclScreen:tclScreen/6 +< < semantics:execute/5 +< < < semantics:executeNode/5 +< < < < cfmStep:cfmNodeStep/4 +< < < < < cfmStep:cfmStep/4 +< < < < dfmStep:dfmNodeStep/4 +< < < < < dfmStep:dfmStep/4 + +tclScreen:variables/1 used by: +< tclScreen:setVars/1 + +----- Coming Up tclScreen:newEnv/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/Terminal/screenTclGui.pro +screenTclGui.pro + +tclScreen:newEnv/1 modified in and callers upstream: +< tclScreen:setVars/1 +< tclScreen:tclScreen/6 +< < semantics:execute/5 +< < < semantics:executeNode/5 +< < < < cfmStep:cfmNodeStep/4 +< < < < < cfmStep:cfmStep/4 +< < < < dfmStep:dfmNodeStep/4 +< < < < < dfmStep:dfmStep/4 + +tclScreen:newEnv/1 used by: +< tclScreen:tclScreen/6 +< < semantics:execute/5 +< < < semantics:executeNode/5 +< < < < cfmStep:cfmNodeStep/4 +< < < < < cfmStep:cfmStep/4 +< < < < dfmStep:dfmNodeStep/4 +< < < < < dfmStep:dfmStep/4 + +----- Coming Up fileInformation:filePath/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/fileInformation.pro +fileInformation.pro + +fileInformation:filePath/1 modified in and callers upstream: +< preProcess:initializeDebug/2 +< preProcess:runCfm/3 +< preProcess:runDfm/3 + +fileInformation:filePath/1 used by: +< tclScreen:tclScreen/6 +< < semantics:execute/5 +< < < semantics:executeNode/5 +< < < < cfmStep:cfmNodeStep/4 +< < < < < cfmStep:cfmStep/4 +< < < < dfmStep:dfmNodeStep/4 +< < < < < dfmStep:dfmStep/4 + +----- Coming Up solsticeUtility:recall/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +solsticeUtility.pro + +solsticeUtility:recall/2 modified in and callers upstream: +< solsticeUtility:callOrRecall/1 + +solsticeUtility:recall/2 used by: +< solsticeUtility:callOrRecall/1 + +----- Coming Up solsticeUtility:atomNumber/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/solsticeUtility.pro +solsticeUtility.pro + +solsticeUtility:atomNumber/2 modified in and callers upstream: +< solsticeUtility:generateAtom/2 +< < executeMiniProgram:expandExternalCall/2 +< < < executeMiniProgram:processStatement/5 +< < < < executeMiniProgram:functionFacts/7 +< < < < < executeMiniProgram:functionFacts/7 ***** looping ***** +< < < < < executeMiniProgram:staticSingleAssignment/3 +< < < < < < executeMiniProgram:getSemanticFacts/3 +< < < < < < < executeMiniProgram:build/2 +< < < < < < < executeMiniProgram:buildDfm/2 +< < < < < < < executeMiniProgram:buildDfm/4 +< < < < < < executeMiniProgram:staticSingleAssignment/3 ***** looping ***** +< < < < executeMiniProgram:processStatement/5 ***** looping ***** +< < < < executeMiniProgram:staticSingleAssignment/3 +< < < < < executeMiniProgram:getSemanticFacts/3 +< < < < < < executeMiniProgram:build/2 +< < < < < < executeMiniProgram:buildDfm/2 +< < < < < < executeMiniProgram:buildDfm/4 +< < < < < executeMiniProgram:staticSingleAssignment/3 ***** looping ***** +< < executeMiniProgram:expandFunction/4 +< < < executeMiniProgram:processStatement/5 +< < < < executeMiniProgram:functionFacts/7 +< < < < < executeMiniProgram:functionFacts/7 ***** looping ***** +< < < < < executeMiniProgram:staticSingleAssignment/3 +< < < < < < executeMiniProgram:getSemanticFacts/3 +< < < < < < < executeMiniProgram:build/2 +< < < < < < < executeMiniProgram:buildDfm/2 +< < < < < < < executeMiniProgram:buildDfm/4 +< < < < < < executeMiniProgram:staticSingleAssignment/3 ***** looping ***** +< < < < executeMiniProgram:processStatement/5 ***** looping ***** +< < < < executeMiniProgram:staticSingleAssignment/3 +< < < < < executeMiniProgram:getSemanticFacts/3 +< < < < < < executeMiniProgram:build/2 +< < < < < < executeMiniProgram:buildDfm/2 +< < < < < < executeMiniProgram:buildDfm/4 +< < < < < executeMiniProgram:staticSingleAssignment/3 ***** looping ***** +< < logicTranslationUtilities:consolidatePrimitive/5 +< < < logicTranslationUtilities:consolidateTermFunctor/4 +< < < < logicTranslationUtilities:isomorphicConsolidate/4 +< < < < < logicTranslationUtilities:isomorphicConsolidate/3 +< < < < < < logicTranslationUtilities:prettyPrinter/1 +< < < < < logicTranslationUtilities:isomorphicConsolidate/4 ***** looping ***** + +solsticeUtility:atomNumber/2 used by: + +----- Coming Up operators:called/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/operators.pro +operators.pro + +operators:called/2 modified in and callers upstream: +< operators:(count)/1 +< < operators:countDown/1 +< < < operators:go/0 + +operators:called/2 used by: + +----- Coming Up log:indentation/1 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +log.pro + +log:indentation/1 modified in and callers upstream: +< log:decIndent/0 +< < log:callfail/5 +< < log:exitredo/5 +< log:incIndent/0 +< < log:callfail/5 +< < log:exitredo/5 + +log:indentation/1 used by: +< log:decIndent/0 +< < log:callfail/5 +< < log:exitredo/5 +< log:indent/0 +< < log:callfail/5 +< < log:exitredo/5 +< < log:log/5 + +----- Coming Up log:flag/2 ---------- +/Users/dmerritt/dev/solstice/Solstice/src/prolog/utilities/log.pro +log.pro + +log:flag/2 modified in and callers upstream: +< log:set_flag/2 +< < log:setLogLevel/1 + +log:flag/2 used by: +< log:get_flag/2 +< < log:getLogLevel/1 +< < < log:log/3 +< < < < errorHandler:logErrorDetails/1 +< < < < < errorHandler:logError/1 +< < < < < < errorHandler:test_logError/0 +< < < < < < preProcess:runCfm/3 +< < < < < < preProcess:runDfm/3 +< < < < < < query_interface:conjunction/6 +< < < < < < < query_interface:conjunction/6 ***** looping ***** +< < < < < < < query_interface:constraint/5 +< < < < < < < < query_interface:conjunction/6 ***** looping ***** +< < < < < < < < query_interface:query/4 +< < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < query_interface:disjunction/5 +< < < < < < < < query_interface:disjunction/5 ***** looping ***** +< < < < < < < < query_interface:query/4 +< < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < query_interface:query/4 +< < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < query_interface:disjunction/5 +< < < < < < < query_interface:disjunction/5 ***** looping ***** +< < < < < < < query_interface:query/4 +< < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < query_interface:predicate/2 +< < < < < < < query_interface:constraint/5 +< < < < < < < < query_interface:conjunction/6 +< < < < < < < < < query_interface:conjunction/6 ***** looping ***** +< < < < < < < < < query_interface:constraint/5 ***** looping ***** +< < < < < < < < < query_interface:disjunction/5 +< < < < < < < < < < query_interface:disjunction/5 ***** looping ***** +< < < < < < < < < < query_interface:query/4 +< < < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < query_interface:query/4 +< < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < query_interface:query/4 +< < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < query_interface:findallConstraint/6 +< < < < < < < < query_interface:constraint/5 +< < < < < < < < < query_interface:conjunction/6 +< < < < < < < < < < query_interface:conjunction/6 ***** looping ***** +< < < < < < < < < < query_interface:constraint/5 ***** looping ***** +< < < < < < < < < < query_interface:disjunction/5 +< < < < < < < < < < < query_interface:disjunction/5 ***** looping ***** +< < < < < < < < < < < query_interface:query/4 +< < < < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < query_interface:query/4 +< < < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < query_interface:query/4 +< < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < query_interface:findallConstraint/6 ***** looping ***** +< < < < < < query_interface:query/4 +< < < < < < < query_interface:queryVerify/4 +< < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < query_interface:readFileTerms/3 +< < < < < < < query_interface:readFileTerms/3 ***** looping ***** +< < < < < errorHandler:logErrorDetails/1 ***** looping ***** +< < < < log:log/2 +< < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < applicationFunction:processDB2Position/6 +< < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < applicationFunction:applyUserConstraintsToAppFunction/4 +< < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < applicationFunction:feasibilityOfNode/5 +< < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < applicationFunction:getConcept/5 +< < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < applicationFunction:removeNodeVarDups/2 +< < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < applicationModel:assertModuleIntoApplicationModel/4 +< < < < < < applicationModel:assertFactsIntoApplicationModelFromArtifact/3 +< < < < < < < applicationModel:assertFactsIntoApplicationModel/3 +< < < < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < applicationModel:refreshModuleInApplicationModelForCurrentProject/1 +< < < < < applicationModel:cleanApplicationModelForProject/1 +< < < < < < applicationModel:cleanApplicationModelForCurrentProject/0 +< < < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < applicationModel:retractModuleFromApplicationModel/2 +< < < < < < applicationModel:refreshModuleInApplicationModelForCurrentProject/1 +< < < < < < applicationModel:retractModuleFromApplicationModelForCurrentProject/1 +< < < < < applicationModel:writeApplicationModelToFile/0 +< < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < dfmCreate:createDependencies/4 +< < < < < < dfmCreate:createDependencies/4 ***** looping ***** +< < < < < dfmCreate:create_function_io_dependencies/6 +< < < < < < dfmCreate:createDependencies/4 +< < < < < < < dfmCreate:createDependencies/4 ***** looping ***** +< < < < < dfmTraversal:build_dfm_traversal_graph/2 +< < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < errorHandler:logError/1 +< < < < < < errorHandler:test_logError/0 +< < < < < < preProcess:runCfm/3 +< < < < < < preProcess:runDfm/3 +< < < < < < query_interface:conjunction/6 +< < < < < < < query_interface:conjunction/6 ***** looping ***** +< < < < < < < query_interface:constraint/5 +< < < < < < < < query_interface:conjunction/6 ***** looping ***** +< < < < < < < < query_interface:query/4 +< < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < query_interface:disjunction/5 +< < < < < < < < query_interface:disjunction/5 ***** looping ***** +< < < < < < < < query_interface:query/4 +< < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < query_interface:query/4 +< < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < query_interface:disjunction/5 +< < < < < < < query_interface:disjunction/5 ***** looping ***** +< < < < < < < query_interface:query/4 +< < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < query_interface:predicate/2 +< < < < < < < query_interface:constraint/5 +< < < < < < < < query_interface:conjunction/6 +< < < < < < < < < query_interface:conjunction/6 ***** looping ***** +< < < < < < < < < query_interface:constraint/5 ***** looping ***** +< < < < < < < < < query_interface:disjunction/5 +< < < < < < < < < < query_interface:disjunction/5 ***** looping ***** +< < < < < < < < < < query_interface:query/4 +< < < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < query_interface:query/4 +< < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < query_interface:query/4 +< < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < query_interface:findallConstraint/6 +< < < < < < < < query_interface:constraint/5 +< < < < < < < < < query_interface:conjunction/6 +< < < < < < < < < < query_interface:conjunction/6 ***** looping ***** +< < < < < < < < < < query_interface:constraint/5 ***** looping ***** +< < < < < < < < < < query_interface:disjunction/5 +< < < < < < < < < < < query_interface:disjunction/5 ***** looping ***** +< < < < < < < < < < < query_interface:query/4 +< < < < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < query_interface:query/4 +< < < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < query_interface:query/4 +< < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < query_interface:findallConstraint/6 ***** looping ***** +< < < < < < query_interface:query/4 +< < < < < < < query_interface:queryVerify/4 +< < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < query_interface:readFileTerms/3 +< < < < < < < query_interface:readFileTerms/3 ***** looping ***** +< < < < < errorHandler:logErrorDetails/1 +< < < < < < errorHandler:logError/1 +< < < < < < < errorHandler:test_logError/0 +< < < < < < < preProcess:runCfm/3 +< < < < < < < preProcess:runDfm/3 +< < < < < < < query_interface:conjunction/6 +< < < < < < < < query_interface:conjunction/6 ***** looping ***** +< < < < < < < < query_interface:constraint/5 +< < < < < < < < < query_interface:conjunction/6 ***** looping ***** +< < < < < < < < < query_interface:query/4 +< < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < query_interface:disjunction/5 +< < < < < < < < < query_interface:disjunction/5 ***** looping ***** +< < < < < < < < < query_interface:query/4 +< < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < query_interface:query/4 +< < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < query_interface:disjunction/5 +< < < < < < < < query_interface:disjunction/5 ***** looping ***** +< < < < < < < < query_interface:query/4 +< < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < query_interface:predicate/2 +< < < < < < < < query_interface:constraint/5 +< < < < < < < < < query_interface:conjunction/6 +< < < < < < < < < < query_interface:conjunction/6 ***** looping ***** +< < < < < < < < < < query_interface:constraint/5 ***** looping ***** +< < < < < < < < < < query_interface:disjunction/5 +< < < < < < < < < < < query_interface:disjunction/5 ***** looping ***** +< < < < < < < < < < < query_interface:query/4 +< < < < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < query_interface:query/4 +< < < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < query_interface:query/4 +< < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < query_interface:findallConstraint/6 +< < < < < < < < < query_interface:constraint/5 +< < < < < < < < < < query_interface:conjunction/6 +< < < < < < < < < < < query_interface:conjunction/6 ***** looping ***** +< < < < < < < < < < < query_interface:constraint/5 ***** looping ***** +< < < < < < < < < < < query_interface:disjunction/5 +< < < < < < < < < < < < query_interface:disjunction/5 ***** looping ***** +< < < < < < < < < < < < query_interface:query/4 +< < < < < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < query_interface:query/4 +< < < < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < query_interface:query/4 +< < < < < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < query_interface:findallConstraint/6 ***** looping ***** +< < < < < < < query_interface:query/4 +< < < < < < < < query_interface:queryVerify/4 +< < < < < < < < < appFnUtilities:getCursorSelectStmt/2 +< < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:isAReadStatement/3 +< < < < < < < < < applicationFunction:isAScreenStatement/3 +< < < < < < < < < applicationFunction:isInLoop/2 +< < < < < < < < < < applicationFunction:formatApplicationFunction/5 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:resolveConeOfInfluence/5 +< < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < solsticeFileUtility:getFileNameAssignment/3 +< < < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < solsticeFileUtility:resolveFileName/2 +< < < < < < < < < < applicationFunction:processDB2Position/6 +< < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < < < < applicationFunction:retrieveConceptByStmt/3 +< < < < < < < < < < < applicationFunction:retrieveConcept/2 +< < < < < < < < < < < < applicationFunction:getPathVarConcepts/2 +< < < < < < < < < < < < < applicationFunction:resolveApplicationFunctions/6 +< < < < < < < < < < < < < < applicationFunction:generateAppFunctionFromVar/7 +< < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 +< < < < < < < < < < < < < < < < applicationFunction:generateAppFunctionsFromStmt/7 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateEncodingAppFunctions/5 ***** looping ***** +< < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 +< < < < < < < < < < < < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < < < < < < < < < < < applicationFunction:generateInfoTransAppFunctions/5 ***** looping ***** +< < < < < < < query_interface:readFileTerms/3 +< < < < < < < < query_interface:readFileTerms/3 ***** looping ***** +< < < < < < errorHandler:logErrorDetails/1 ***** looping ***** +< < < < < executeMiniProgram:functionGlobalSignature/5 +< < < < < < executeMiniProgram:getSemanticFacts/3 +< < < < < < < executeMiniProgram:build/2 +< < < < < < < executeMiniProgram:buildDfm/2 +< < < < < < < executeMiniProgram:buildDfm/4 +< < < < < executeMiniProgram:getSemanticFacts/3 +< < < < < < executeMiniProgram:build/2 +< < < < < < executeMiniProgram:buildDfm/2 +< < < < < < executeMiniProgram:buildDfm/4 +< < < < < executeMiniProgram:parseMiniC/2 +< < < < < executeMiniProgram:parseMiniCobol/2 +< < < < < feasibilityService:feasibilityService/4 +< < < < < < feasibilityService:feasibilityService/4 ***** looping ***** +< < < < < < feasibilityService:feasibilityServiceNode/4 +< < < < < feasibilityService:feasibilityServiceNode/4 +< < < < < feasibilityService:getInfeasibleNodes/4 +< < < < < feasibilityService:testFeasibilityOfNode/5 +< < < < < interpreter:debug/5 +< < < < < < preProcess:stepRecurse/1 +< < < < < < < preProcess:step/2 +< < < < < logicTranslator:getFieldSizeFromOntology/5 +< < < < < miniCParse:writeList/1 +< < < < < < miniCParse:writeList/1 ***** looping ***** +< < < < < screenUtility:getTrueFalseEditableListFromTCLFile/2 +< < < < < < screenUtility:screenOutputArgs/5 +< < < < < < tclScreen:setVars/1 +< < < < < screenUtility:screenOutputArgs/5 +< < < < < semantics:execute/5 +< < < < < < semantics:executeNode/5 +< < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < cfmStep:cfmStep/4 +< < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < dfmStep:dfmStep/4 +< < < < < semantics:getVar/3 +< < < < < < semantics:assignStruct/4 +< < < < < < < semantics:assignStruct/4 ***** looping ***** +< < < < < < < semantics:execute/5 +< < < < < < < < semantics:executeNode/5 +< < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < semantics:evalExpression/4 +< < < < < < < semantics:evalConditional/4 +< < < < < < < < semantics:evalConditional/4 ***** looping ***** +< < < < < < < < semantics:execute/5 +< < < < < < < < < semantics:executeNode/5 +< < < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < < < semantics:resolve/4 +< < < < < < < < < semantics:resolveNode/4 +< < < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < < semantics:evalExpression/4 ***** looping ***** +< < < < < < < semantics:execute/5 +< < < < < < < < semantics:executeNode/5 +< < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < < semantics:groundArgs/4 +< < < < < < < < semantics:execute/5 +< < < < < < < < < semantics:executeNode/5 +< < < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < < semantics:keyIsValid/4 +< < < < < < < semantics:notValid/5 +< < < < < < semantics:evalStructure/3 +< < < < < < < semantics:evalStructure/3 ***** looping ***** +< < < < < < < semantics:execute/5 +< < < < < < < < semantics:executeNode/5 +< < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < semantics:execute/5 +< < < < < < < semantics:executeNode/5 +< < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < dfmStep:dfmStep/4 +< < < < < < semantics:executePhiFunction/4 +< < < < < < < semantics:executePhiFunction/4 ***** looping ***** +< < < < < < < semantics:resolve/4 +< < < < < < < < semantics:resolveNode/4 +< < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < semantics:getQueryValues/3 +< < < < < < < semantics:execute/5 +< < < < < < < < semantics:executeNode/5 +< < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < < semantics:getQueryValues/3 ***** looping ***** +< < < < < < semantics:mapArguments/5 +< < < < < < < semantics:functionStep/4 +< < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < dfmStep:dfmStep/4 +< < < < < < < semantics:mapArguments/5 ***** looping ***** +< < < < < < semantics:mapGlobals/5 +< < < < < < < semantics:functionStep/4 +< < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < dfmStep:dfmStep/4 +< < < < < < < semantics:mapGlobals/5 ***** looping ***** +< < < < < < semantics:mapReturn/5 +< < < < < < < semantics:functionStep/4 +< < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < dfmStep:dfmStep/4 +< < < < < < semantics:writeRecordInfo/3 +< < < < < < < semantics:execute/5 +< < < < < < < < semantics:executeNode/5 +< < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < semantics:writeStruct/2 +< < < < < < < semantics:execute/5 +< < < < < < < < semantics:executeNode/5 +< < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < < semantics:writeStruct/2 ***** looping ***** +< < < < < semantics:setVar/4 +< < < < < < semantics:assignReturnedStruct/4 +< < < < < < < semantics:assignReturnedStruct/4 ***** looping ***** +< < < < < < < semantics:execute/5 +< < < < < < < < semantics:executeNode/5 +< < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < semantics:assignStruct/4 +< < < < < < < semantics:assignStruct/4 ***** looping ***** +< < < < < < < semantics:execute/5 +< < < < < < < < semantics:executeNode/5 +< < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < semantics:assignValues/5 +< < < < < < < semantics:assignValues/5 ***** looping ***** +< < < < < < < semantics:execute/5 +< < < < < < < < semantics:executeNode/5 +< < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < semantics:execute/5 +< < < < < < < semantics:executeNode/5 +< < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < dfmStep:dfmStep/4 +< < < < < < semantics:executePhiFunction/4 +< < < < < < < semantics:executePhiFunction/4 ***** looping ***** +< < < < < < < semantics:resolve/4 +< < < < < < < < semantics:resolveNode/4 +< < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < semantics:mapArguments/5 +< < < < < < < semantics:functionStep/4 +< < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < dfmStep:dfmStep/4 +< < < < < < < semantics:mapArguments/5 ***** looping ***** +< < < < < < semantics:mapGlobals/5 +< < < < < < < semantics:functionStep/4 +< < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < dfmStep:dfmStep/4 +< < < < < < < semantics:mapGlobals/5 ***** looping ***** +< < < < < < semantics:mapReturn/5 +< < < < < < < semantics:functionStep/4 +< < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < dfmStep:dfmStep/4 +< < < < < < semantics:readRecordInfo/5 +< < < < < < < semantics:execute/5 +< < < < < < < < semantics:executeNode/5 +< < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < semantics:setVariables/4 +< < < < < < < semantics:execute/5 +< < < < < < < < semantics:executeNode/5 +< < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < < semantics:readRecordInfo/5 +< < < < < < < < semantics:execute/5 +< < < < < < < < < semantics:executeNode/5 +< < < < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < < < dfmStep:dfmStep/4 +< < < < < < < semantics:setVariables/4 ***** looping ***** +< < < < < < tclScreen:setVariable/4 +< < < < < < < tclScreen:setVariables/4 +< < < < < < < < tclScreen:setVariables/4 ***** looping ***** +< < < < < < < < tclScreen:setVars/1 +< < < < < sessionManager:getAppFnPath/2 +< < < < < < sessionManager:getAppFnPath/1 +< < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < sessionManager:reloadRepresentation/2 +< < < < < sessionManager:getApplicationModelPath/2 +< < < < < < sessionManager:getApplicationModelPath/1 +< < < < < < < appFnInterface:loadApplicationFunctionsIfNecessary/0 +< < < < < < < < applicationFunction:applyUserConstraintsToAppFunction/4 +< < < < < < < < applicationFunction:feasibilityOfNode/5 +< < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < applicationModel:ensureApplicationModelDirectoryExists/0 +< < < < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < applicationModel:loadApplicationModelForCurrentProject/0 +< < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < applicationModel:writeApplicationModelToFile/0 +< < < < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < sessionManager:getArcPath/2 +< < < < < < sessionManager:getArcPath/1 +< < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < dfmTraversal:build_dfm_traversal_graph/2 +< < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < sessionManager:getCFMPath/2 +< < < < < < sessionManager:getCFMPath/1 +< < < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < applicationModel:refreshModuleInApplicationModelForCurrentProject/1 +< < < < < < < sessionManager:getCFMPath/3 +< < < < < sessionManager:getCurrentProject/1 +< < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < applicationModel:cleanApplicationModelForCurrentProject/0 +< < < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < applicationModel:loadApplicationModelForCurrentProject/0 +< < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < applicationModel:refreshModuleInApplicationModelForCurrentProject/1 +< < < < < < applicationModel:retractModuleFromApplicationModelForCurrentProject/1 +< < < < < < applicationModel:writeApplicationModelToFile/0 +< < < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < dfmTraversal:full_traverse/6 +< < < < < < dfm_mappings:conditionalVar/3 +< < < < < < dfm_mappings:initialNode/2 +< < < < < < dfm_mappings:moduleName/3 +< < < < < < dfm_mappings:phiByNode/3 +< < < < < < dfm_mappings:phiByVar/3 +< < < < < < dfm_mappings:phiFunctions/3 +< < < < < < dfm_mappings:stmtType/3 +< < < < < < dfm_mappings:terminalNode/2 +< < < < < < screenUtility:screenOutputArgs/5 +< < < < < < semantics:execute/5 +< < < < < < < semantics:executeNode/5 +< < < < < < < < cfmStep:cfmNodeStep/4 +< < < < < < < < < cfmStep:cfmStep/4 +< < < < < < < < dfmStep:dfmNodeStep/4 +< < < < < < < < < dfmStep:dfmStep/4 +< < < < < < sessionManager:getAppFnPath/1 +< < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < applicationFunction:constructApplicationFunctions/3 +< < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < sessionManager:getApplicationModelPath/1 +< < < < < < < appFnInterface:loadApplicationFunctionsIfNecessary/0 +< < < < < < < < applicationFunction:applyUserConstraintsToAppFunction/4 +< < < < < < < < applicationFunction:feasibilityOfNode/5 +< < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < applicationModel:ensureApplicationModelDirectoryExists/0 +< < < < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < applicationModel:loadApplicationModelForCurrentProject/0 +< < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < applicationModel:writeApplicationModelToFile/0 +< < < < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < sessionManager:getArcPath/1 +< < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < dfmTraversal:build_dfm_traversal_graph/2 +< < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < sessionManager:getCFMPath/1 +< < < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < applicationModel:refreshModuleInApplicationModelForCurrentProject/1 +< < < < < < < sessionManager:getCFMPath/3 +< < < < < < sessionManager:getDFMPath/1 +< < < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < applicationModel:refreshModuleInApplicationModelForCurrentProject/1 +< < < < < < < sessionManager:getDFMPath/3 +< < < < < < sessionManager:getOntologyPath/1 +< < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < sessionManager:getScreensPath/1 +< < < < < < sessionManager:getSourcePath/1 +< < < < < < sessionManager:getTransactionPath/1 +< < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < transactionInterface:loadTransactionsForCurrentProject/0 +< < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < sessionManager:reloadRepresentation/2 +< < < < < sessionManager:getDFMPath/2 +< < < < < < sessionManager:getDFMPath/1 +< < < < < < < applicationModel:generateApplicationModelForCurrentProject/0 +< < < < < < < < applicationFunction:setUpAppFnProject/1 +< < < < < < < < < applicationFunction:generateApplicationFunctions/2 +< < < < < < < < < < applicationFunction:generateApplicationFunctions/1 +< < < < < < < < < < < appFnInterface:loadApplicationFunctions/1 +< < < < < < < < < < < < appFnInterface:queryAppFn/3 +< < < < < < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < < < < < < sessionManager:reloadRepresentation/2 +< < < < < < < applicationModel:refreshModuleInApplicationModelForCurrentProject/1 +< < < < < < < sessionManager:getDFMPath/3 +< < < < < sessionManager:getDFMPath/3 +< < < < < sessionManager:getOntologyPath/2 +< < < < < < sessionManager:getOntologyPath/1 +< < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < sessionManager:reloadRepresentation/2 +< < < < < sessionManager:getScreenPath/2 +< < < < < < sessionManager:getScreensPath/1 +< < < < < sessionManager:getSourcePath/2 +< < < < < < sessionManager:getSourcePath/1 +< < < < < sessionManager:getTransactionPath/2 +< < < < < < sessionManager:getTransactionPath/1 +< < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < < < transactionInterface:loadTransactionsForCurrentProject/0 +< < < < < < < < sessionManager:assertRepresentations/0 +< < < < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < < < sessionManager:setUpCurrentProject/2 +< < < < < sessionManager:reloadRepresentation/2 +< < < < < sessionManager:setUpCurrentProject/1 +< < < < < tclScreen:handleProcedure/2 +< < < < < < tclScreen:launchProcedure/2 +< < < < < < < tclScreen:loadFileRecords/1 +< < < < < < < tclScreen:screenInit/0 +< < < < < < < tclScreen:setFileRecords/3 +< < < < < transactionInterface:loadTransactionsForCurrentProject/0 +< < < < < < sessionManager:assertRepresentations/0 +< < < < < < < sessionManager:rebuildRepresentations/1 +< < < < < < < sessionManager:setUpCurrentProject/2 +< < < log:logq/3 +< < < < log:logq/2 +< < < < < operators:(?)/1 +< < < < < < operators:(?)/3 diff --git a/xrf_XRef.txt b/xrf_XRef.txt new file mode 100644 index 0000000..d0fa8d8 --- /dev/null +++ b/xrf_XRef.txt @@ -0,0 +1,135 @@ + +----- Warnings ----- +Unused predicate: user:here/1 +Unused predicate: user:main/0 +Unused predicate: xrf:(?)/1 +Unused predicate: xrf:get_xlists/2 +Unused predicate: xrf:used_by2/2 +Unused predicate: xrf:uses2/2 +Unused predicate: xrf:warning/2 + +----- Predicate Use ----- +user:bottoms/1 xrfSicstusMain.pro:108:111 + subgoals: + builtin:findall/3 + called from: + user:cross_reference/3 +user:bottoms_up/1 xrfSicstusMain.pro:121:123 + subgoals: + user:bottoms_up/1 + user:cone_above/1 + builtin:nl/0 + builtin:write/1 + called from: + user:bottoms_up/1 + user:cross_reference/3 +user:called_by_report/1 xrfSicstusMain.pro:83:94 + subgoals: + builtin: \= /2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + user:write_list/2 + xrf:used_by/2 + called from: + user:uses_report/1 +user:cone_above/1 xrfSicstusMain.pro:156:166 + subgoals: + user:cones_above/3 + builtin:nl/0 + builtin:write/1 + xrf:modified_in/2 + xrf:used_by/2 + called from: + user:bottoms_up/1 +user:cone_below/1 xrfSicstusMain.pro:131:137 + subgoals: + user:cones_below/3 + builtin:nl/0 + builtin:write/1 + xrf:uses/2 + called from: + user:tops_down/1 +user:cones_above/3 xrfSicstusMain.pro:166:169 + subgoals: + user:cones_above/3 + builtin:is/2 + builtin:memberchk/2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + xrf:used_by/2 + called from: + user:cone_above/1 + user:cones_above/3 +user:cones_below/3 xrfSicstusMain.pro:137:139 + subgoals: + user:cones_below/3 + builtin:is/2 + builtin:memberchk/2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + xrf:uses/2 + called from: + user:cone_below/1 + user:cones_below/3 +user:cross_reference/3 xrfSicstusMain.pro:24:37 + subgoals: + user:bottoms/1 + user:bottoms_up/1 + file_systems:current_directory/2 + user:set_tab/1 + builtin:tell/1 + builtin:told/0 + user:tops/1 + user:tops_down/1 + user:xreport/0 + xrf:xref/1 + called from: + user:main/0 +user:here/1 xrfSicstusMain.pro:5:7 + no subgoals + no callers +user:io/4 xrfSicstusMain.pro:7:12 + no subgoals + called from: + user:main/0 +user:main/0 xrfSicstusMain.pro:20:24 + subgoals: + user:cross_reference/3 + user:io/4 + no callers +user:modified_report/1 xrfSicstusMain.pro:58:71 + subgoals: + builtin: \= /2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + user:write_list/2 + xrf:dynamic_pred/1 + xrf:modified_in/2 + called from: + user:uses_report/1 +user:set_tab/1 xrfSicstusMain.pro:101:105 + subgoals: + builtin:retractall/1 + assert-user:tab_text/1 + called from: + user:cross_reference/3 +user:subgoal_report/1 xrfSicstusMain.pro:72:83 + subgoals: + builtin: \= /2 + builtin:nl/0 + user:tab/1 + builtin:write/1 + user:write_list/2 + xrf:uses/2 + called from: + user:uses_report/1 +user:tab/1 xrfSicstusMain.pro:94:96 + subgoals: + builtin:is/2 + user:tab/1 + user:tab_text/1 + builtin: \ No newline at end of file